Skip to content

Commit aff6bfe

Browse files
committed
Fix test error
1 parent 40acc19 commit aff6bfe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/bindings/python/tests/cindex/test_file.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ def test_file_eq_failing_3(self):
7878
self.assertEqual(file1, file3)
7979

8080
def test_file_eq_failing_4(self):
81-
path = os.path.join(inputs_dir, "hello.cpp")
81+
path = os.path.join(inputs_dir, "testfile.c")
8282
tu = TranslationUnit.from_source(path)
83-
file1 = File.from_name(tu, "t.c")
83+
file1 = File.from_name(tu, "testfile.c")
8484
file2 = File.from_name(tu, "a.c")
8585
file3 = File.from_name(tu, "b.c")
8686
# FIXME: These files are not supposed to be equal

0 commit comments

Comments
 (0)