We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40acc19 commit aff6bfeCopy full SHA for aff6bfe
clang/bindings/python/tests/cindex/test_file.py
@@ -78,9 +78,9 @@ def test_file_eq_failing_3(self):
78
self.assertEqual(file1, file3)
79
80
def test_file_eq_failing_4(self):
81
- path = os.path.join(inputs_dir, "hello.cpp")
+ path = os.path.join(inputs_dir, "testfile.c")
82
tu = TranslationUnit.from_source(path)
83
- file1 = File.from_name(tu, "t.c")
+ file1 = File.from_name(tu, "testfile.c")
84
file2 = File.from_name(tu, "a.c")
85
file3 = File.from_name(tu, "b.c")
86
# FIXME: These files are not supposed to be equal
0 commit comments