summaryrefslogtreecommitdiff
path: root/Biz/Bild.hs
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2024-05-23 14:49:13 -0400
committerBen Sima <ben@bsima.me>2024-05-23 14:49:13 -0400
commit8e96ed57dca9ddc7e0067dbce52e0aa52754a7c6 (patch)
tree2f8ea7742bbbf35b3e71d36268b4efcdcceb0797 /Biz/Bild.hs
parent93fc94363e6aeeb7bf45cdb57af3179e66933813 (diff)
Put __pycache__ in _/int
This shouldn't be polluting the main namespace.
Diffstat (limited to 'Biz/Bild.hs')
-rw-r--r--Biz/Bild.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Biz/Bild.hs b/Biz/Bild.hs
index a67c1c2..cb3fe16 100644
--- a/Biz/Bild.hs
+++ b/Biz/Bild.hs
@@ -275,7 +275,7 @@ test_isGitIgnored =
res <- isGitIgnored "_"
res @=? True,
Test.unit "filters many" <| do
- traverse isGitIgnored ["Biz/Bild.hs", "__pycache__"]
+ traverse isGitIgnored ["Biz/Bild.hs", "TAGS"]
+> (@=? [False, True])
]