From a8e58e2e9075e0824d31cf1e3c80c51403fcb1c6 Mon Sep 17 00:00:00 2001 From: Elijah Rippeth Date: Sun, 30 Jan 2022 10:14:04 -0500 Subject: [PATCH] remove extra print MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Oops, my mistake. 😓 --- test/datasets/test_agnews.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/datasets/test_agnews.py b/test/datasets/test_agnews.py index 727d211ad9..33fb3bb384 100644 --- a/test/datasets/test_agnews.py +++ b/test/datasets/test_agnews.py @@ -64,7 +64,6 @@ def test_agnews(self, split): samples = list(dataset) expected_samples = self.samples[split] for sample, expected_sample in zip_equal(samples, expected_samples): - print(sample, expected_sample) self.assertEqual(sample, expected_sample) @parameterized.expand(["train", "test"])