Skip to content

Commit 9db988e

Browse files
committed
Add comments
1 parent 398e93e commit 9db988e

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

test/unit/virtual_include/test_virtual_include.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ def test_bazel_code_checker_plist_path_resolved(self):
7373
),
7474
recursive=True,
7575
)
76+
# Test whether the _virtual_include directory was actually created.
7677
self.assertTrue(
7778
os.path.isdir(f"{self.BAZEL_BIN_DIR}/_virtual_includes")
7879
)
@@ -97,10 +98,12 @@ def test_bazel_codechecker_plist_path_resolved(self):
9798
),
9899
recursive=True,
99100
)
101+
# Test whether the _virtual_include directory was actually created.
100102
self.assertTrue(
101103
os.path.isdir(f"{self.BAZEL_BIN_DIR}/_virtual_includes")
102104
)
103-
# FIXME: This should be equal
105+
# FIXME: In the postprocessed plists, all _virtual_include paths should've been
106+
# removed. Possible fix is in the github PR #14.
104107
self.assertNotEqual(
105108
self.contains_in_files(r"/_virtual_includes/", plist_files), []
106109
)

0 commit comments

Comments
 (0)