Skip to content

Commit

Permalink
Refactor assert statements
Browse files Browse the repository at this point in the history
  • Loading branch information
ephathaway committed May 20, 2021
1 parent 2820b67 commit 467a860
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mne/tests/test_evoked.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,10 +277,10 @@ def test_export_evokeds_to_mff(tmpdir, fmt):
# Compare data
assert_allclose(ave_exported.data, ave.data)
# Compare properties
assert_equal(ave_exported.nave, ave.nave)
assert_equal(ave_exported.kind, ave.kind)
assert_equal(ave_exported.comment, ave.comment)
assert_equal(ave_exported.times, ave.times)
assert ave_exported.nave == ave.nave
assert ave_exported.kind == ave.kind
assert ave_exported.comment == ave.comment
assert_allclose(ave_exported.times, ave.times)


def test_export_to_mff_no_device():
Expand Down

0 comments on commit 467a860

Please sign in to comment.