Skip to content

Commit

Permalink
Update emission/tests/modellingTests/TestRunGreedyIncrementalModel.py
Browse files Browse the repository at this point in the history
Co-authored-by: shankari <[email protected]>
  • Loading branch information
robfitzgerald and shankari authored Aug 11, 2022
1 parent b252622 commit dab7295
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def testIncrementalRun(self):
'there should be three bins, one with 2 similar trips, and two singleton bins')

trips_in_bin = len(updated_model.bins['0']['feature_rows'])
print(f'trips in bins: {[len(x["feature_vectors"]) for x in updated_model.bins.values()]}')
print(f'trips in bins: {[len(x["feature_rows"]) for x in updated_model.bins.values()]}')
self.assertEqual(trips_in_bin, self.expected_trips,
'expected number of trips stored in bin')

Expand Down

0 comments on commit dab7295

Please sign in to comment.