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.
1 parent 21769e2 commit 03a81b4Copy full SHA for 03a81b4
tests/commands/test_test.py
@@ -6,7 +6,7 @@
6
from packaging import version
7
8
from datasets import config
9
-from datasets.commands.test import CLITestCommand
+from datasets.commands.test import TestCommand
10
11
12
if config.PY_VERSION >= version.parse("3.7"):
@@ -45,7 +45,7 @@ def __iter__(self):
45
46
def test_test_command(dataset_loading_script_dir):
47
args = _TestCommandArgs(dataset=dataset_loading_script_dir, all_configs=True, save_infos=True)
48
- test_command = CLITestCommand(*args)
+ test_command = TestCommand(*args)
49
test_command.run()
50
dataset_infos_path = os.path.join(dataset_loading_script_dir, config.DATASETDICT_INFOS_FILENAME)
51
assert os.path.exists(dataset_infos_path)
0 commit comments