Skip to content

Commit 6b2c3cd

Browse files
committed
fix wrong test name for tar utils
1 parent 19e4a1c commit 6b2c3cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_datasets_utils.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ def test_custom_memory_limit(self):
4949
assert utils.get_memory_limit() == self.default_memory_limit
5050

5151

52-
class TestBz2Utils():
52+
class TestTarUtils():
5353

54-
def test_bz2_extraction(self):
55-
utils.extract_bz2('tests/assets/test.tar.bz2')
54+
def test_tar_extraction(self):
55+
utils.extract_tar('tests/assets/test.tar.bz2')
5656
with Path('test.txt').open('r') as f:
5757
assert f.readlines() == ['test\n']
5858
os.remove('test.txt')

0 commit comments

Comments
 (0)