Skip to content

Commit

Permalink
Apply black again
Browse files Browse the repository at this point in the history
Signed-off-by: Danila Fedorin <daniel.fedorin@hpe.com>
  • Loading branch information
DanilaFe committed Oct 14, 2024
1 parent 2eceecb commit 00aee9e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/chpl-language-server/test/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ async def test_go_to_definition_use_standard(client: LanguageClient):
await check_goto_decl_def_module(client, doc, pos((1, 10)), mod_Map)
await check_goto_decl_def_module(client, doc, pos((2, 8)), mod_Time)


@pytest.mark.asyncio
async def test_go_to_definition_use_across_modules(client: LanguageClient):
"""
Expand All @@ -162,7 +163,9 @@ async def check(docs):
docB = docs("B")

await check_goto_decl_def_module(client, docB, pos((1, 6)), docA)
await check_goto_decl_def(client, docB, pos((2, 10)), (docA, pos((1, 6))))
await check_goto_decl_def(
client, docB, pos((2, 10)), (docA, pos((1, 6)))
)

async with source_files(client, A=fileA, B=fileB) as docs:
await check(docs)
Expand Down

0 comments on commit 00aee9e

Please sign in to comment.