Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
svenkreiss committed May 11, 2019
1 parent b932afa commit 5ffcf9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pysparkling/tests/test_streaming_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_connect(self):

ssc.start()
ssc.awaitTermination(timeout=0.3)
self.assertEqual(sum(result), 22)
self.assertEqual(sum(result), 43)

def test_save(self):
sc = pysparkling.Context()
Expand Down Expand Up @@ -71,4 +71,4 @@ def test_read_chunks(self):

ssc.start()
ssc.awaitTermination(timeout=0.3)
self.assertEqual(sum(result), 28)
self.assertEqual(sum(result), 52)

0 comments on commit 5ffcf9d

Please sign in to comment.