Skip to content

Commit dd0859c

Browse files
committed
fix format
1 parent ce2d7bf commit dd0859c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/integration/test_classification_package.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ def test_cli(self):
5959
def test_cli_3way_split(self):
6060
"""Verify data.npz produced by CLI when split into train/test/val"""
6161

62-
cmd = 'label-maker package --dest integration-cl-split --config ' \
63-
'test/fixtures/integration/config_3way.integration.json '
62+
cmd = 'label-maker package --dest integration-cl-split --config test/fixtures/integration/config_3way.integration.json'
6463
cmd = cmd.split(' ')
6564
subprocess.run(cmd, universal_newlines=True)
6665

@@ -74,4 +73,4 @@ def test_cli_3way_split(self):
7473
# validate label data with shapes
7574
self.assertEqual(data['y_train'].shape, (5, 7))
7675
self.assertEqual(data['y_test'].shape, (2, 7))
77-
self.assertEqual(data['y_val'].shape, (1, 7))
76+
self.assertEqual(data['y_val'].shape, (1, 7))

0 commit comments

Comments
 (0)