Skip to content

Commit 3678ae9

Browse files
committed
try manually converting slashes
1 parent d097490 commit 3678ae9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/cc/current_py_cc_headers/abi3_headers_linkage_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ def test_linkage_windows(self):
1515

1616
resource_path = os.path.join("_main", "tests", "cc", "current_py_cc_headers", "bin_abi3.dll")
1717

18+
##resource_path = r"_main\tests\cc\current_py_cc_headers\bin_abi3.dll"
1819
dll_path = rf.Rlocation(resource_path)
20+
dll_path = dll_path.replace("/", "\\")
1921
if not os.path.exists(dll_path):
2022
self.fail(f"dll at {dll_path} does not exist")
2123

0 commit comments

Comments
 (0)