Skip to content

Commit 9b7cfc4

Browse files
committed
fix runfiles import
1 parent f3d2a01 commit 9b7cfc4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/cc/current_py_cc_headers/abi3_headers_linkage_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
import pefile
55
import unittest
66

7+
from python.runfiles import runfiles
8+
79
class CheckLinkageTest(unittest.TestCase):
810
def test_linkage(self):
9-
11+
rf = runfiles.Create()
1012
file_path = rf.Rlocation("_main/tests/cc/current_py_cc_headers/libbin_abi3.dll")
1113
if not file_path:
1214
self.fail("dll not found")

0 commit comments

Comments
 (0)