Skip to content

Commit

Permalink
fix(core/vcs/tests): Remove * from the beginning
Browse files Browse the repository at this point in the history
  • Loading branch information
lbiaggi committed Aug 2, 2024
1 parent c1983dc commit 396bcaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doorstop/core/vcs/tests/test_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ def test_ignores(self):
patterns = list(self.wc.ignores)
for pattern in patterns:
print(pattern)
self.assertIn("*__pycache__*", patterns)
self.assertIn("*build*", patterns)
self.assertIn("__pycache__*", patterns)
self.assertIn("build*", patterns)

0 comments on commit 396bcaa

Please sign in to comment.