Skip to content

Commit

Permalink
#156 considering 28 by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolay-r committed Jan 21, 2023
1 parent c9d630c commit 788ca0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/tutorials/test_tutorial_pipeline_sampling_bert.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,4 @@ def test(self):
reader = PandasCsvReader()
source = join(self.__output_dir, "sample-train-0.tsv.gz")
storage = reader.read(source)
self.assertEqual(26, len(storage), "Amount of rows is non equal!")
self.assertEqual(28, len(storage), "Amount of rows is non equal!")
2 changes: 1 addition & 1 deletion tests/tutorials/test_tutorial_pipeline_sampling_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,4 +149,4 @@ def test(self):
reader = PandasCsvReader()
source = join(self.__output_dir, "sample-train-0.tsv.gz")
storage = reader.read(source)
self.assertEqual(26, len(storage), "Amount of rows is non equal!")
self.assertEqual(28, len(storage), "Amount of rows is non equal!")

0 comments on commit 788ca0a

Please sign in to comment.