We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19e4a1c commit 6b2c3cdCopy full SHA for 6b2c3cd
tests/test_datasets_utils.py
@@ -49,10 +49,10 @@ def test_custom_memory_limit(self):
49
assert utils.get_memory_limit() == self.default_memory_limit
50
51
52
-class TestBz2Utils():
+class TestTarUtils():
53
54
- def test_bz2_extraction(self):
55
- utils.extract_bz2('tests/assets/test.tar.bz2')
+ def test_tar_extraction(self):
+ utils.extract_tar('tests/assets/test.tar.bz2')
56
with Path('test.txt').open('r') as f:
57
assert f.readlines() == ['test\n']
58
os.remove('test.txt')
0 commit comments