Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
cole committed Mar 13, 2019
1 parent 71be00c commit b6a9c3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ def test_replacement_techmd(self):
techmd_old = metsrw.SubSection('techMD', self.STUB_MDWRAP)
techmd_new = metsrw.SubSection('techMD', self.STUB_MDWRAP)
techmd_old.replace_with(techmd_new)
assert techmd_old.get_status() is 'superseded'
assert techmd_new.get_status() is 'current'
assert techmd_old.get_status() == 'superseded'
assert techmd_new.get_status() == 'current'

def test_replacement_sourcemd(self):
""" It should have no special behaviour replacing sourceMDs. """
Expand Down

0 comments on commit b6a9c3f

Please sign in to comment.