Skip to content

Commit

Permalink
Revert "test"
Browse files Browse the repository at this point in the history
This reverts commit 31c081b.
  • Loading branch information
Benedikt-Brunner committed Nov 30, 2024
1 parent 397c264 commit 1845764
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion napytau/ingest/model/relative_velocity.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ def get_velocity(self) -> float:
def __eq__(self, other: object) -> bool:
if not isinstance(other, RelativeVelocity):
return NotImplemented
return 2
return self.velocity == other.velocity
2 changes: 1 addition & 1 deletion tests/ingest/model/datapoint_collection_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def test_canRetrieveFeedingShiftedIntensities(self):

self.assertEqual(
collection.get_feeding_shifted_intensities(),
[ValueErrorPair(1.0, 0.12), ValueErrorPair(2.0, 0.1)],
[ValueErrorPair(1.0, 0.1), ValueErrorPair(2.0, 0.1)],
)

def test_canRetrieveFeedingUnshiftedIntensities(self):
Expand Down

0 comments on commit 1845764

Please sign in to comment.