Skip to content

Commit

Permalink
Missed some spots
Browse files Browse the repository at this point in the history
  • Loading branch information
rchiodo committed Jan 9, 2025
1 parent a6a8d08 commit fedd2a5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ def test_source_reference(tmpdir):

pydevd_file_utils.setup_client_server_paths([("C:\\foo", "/bar")])

assert pydevd_file_utils.map_file_to_client("/bar/my") == ("c:\\foo\\my", True)
assert pydevd_file_utils.get_client_filename_source_reference("c:\\foo\\my") == 0
assert pydevd_file_utils.map_file_to_client("/bar/my") == ("C:\\foo\\my", True)
assert pydevd_file_utils.get_client_filename_source_reference("C:\\foo\\my") == 0

assert pydevd_file_utils.map_file_to_client("/another/my") == ("\\another\\my", False)
source_reference = pydevd_file_utils.get_client_filename_source_reference("\\another\\my")
Expand Down

0 comments on commit fedd2a5

Please sign in to comment.