Skip to content

Commit 3b48b9b

Browse files
Fix string quotes in test for non-UTF8 path
1 parent 3d0e061 commit 3b48b9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_resource.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ def test_codebase_cache_default(self):
698698
def test_codebase_cache_handles_non_utf8_path(self):
699699
test_codebase = self.get_test_loc("resource/cache2")
700700
codebase = Codebase(test_codebase)
701-
codebase._get_resource_cache_location('resource/cache2/\udce9', create_dirs=True)
701+
codebase._get_resource_cache_location("resource/cache2/\udce9", create_dirs=True)
702702

703703
def test_codebase_cache_all_in_memory(self):
704704
test_codebase = self.get_test_loc("resource/cache2")

0 commit comments

Comments
 (0)