Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Jade Abraham <[email protected]>
  • Loading branch information
jabraham17 committed Aug 29, 2024
1 parent 700cd72 commit ee7f1cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/chpl-language-server/test/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,7 @@ async def test_list_references_standard(client: LanguageClient):
assert references is not None
assert len(references) > 10


@pytest.mark.asyncio
async def test_go_to_def_inherit(client: LanguageClient):
"""
Expand All @@ -334,7 +335,7 @@ async def test_go_to_def_inherit(client: LanguageClient):
class CC { }
class C: CC, II { }
module M {
class CC {}
}
Expand All @@ -360,6 +361,7 @@ class C2: M.CC { }
await check_goto_decl_def(client, doc, pos((10, 10)), pos((7, 7)))
await check_goto_decl_def(client, doc, pos((10, 12)), pos((8, 8)))


@pytest.mark.asyncio
async def test_go_to_enum(client: LanguageClient):
"""
Expand Down

0 comments on commit ee7f1cd

Please sign in to comment.