Skip to content

Commit

Permalink
[TEST] typo [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
bclenet committed Nov 15, 2023
1 parent e092bc5 commit 4892f5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/pipelines/test_team_08MQ.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ def test_run_level_contrasts():
""" Test the get_run_level_contrasts method """
contrasts = PipelineTeam08MQ().get_run_level_contrasts()

assert contrasts[0] == ('positive_effect_gain', 'T', ['gain', 'loss'], [1, 0]),
assert contrasts[0] == ('positive_effect_loss', 'T', ['gain', 'loss'], [0, 1]),
assert contrasts[0] == ('negative_effect_loss', 'T', ['gain', 'loss'], [0, -1]),
assert contrasts[0] == ('positive_effect_gain', 'T', ['gain', 'loss'], [1, 0])
assert contrasts[0] == ('positive_effect_loss', 'T', ['gain', 'loss'], [0, 1])
assert contrasts[0] == ('negative_effect_loss', 'T', ['gain', 'loss'], [0, -1])

@staticmethod
@mark.unit_test
Expand Down

0 comments on commit 4892f5c

Please sign in to comment.