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.
blurb._merge
1 parent 2bc3234 commit e8064b3Copy full SHA for e8064b3
tests/test_parser.py
@@ -3,7 +3,8 @@
3
4
import pytest
5
6
-from blurb.blurb import Blurbs, pushd
+from blurb._versions import chdir
7
+from blurb.blurb import Blurbs
8
9
10
class TestParserPasses:
@@ -19,7 +20,7 @@ def filename_test(self, filename):
19
20
assert str(b) == expected
21
22
def test_files(self):
- with pushd(self.directory):
23
+ with chdir(self.directory):
24
for filename in glob.glob("*"):
25
if filename.endswith(".res"):
26
assert os.path.exists(filename[:-4]), filename
0 commit comments