Skip to content

Commit

Permalink
Delete duplicated test method
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Hennenfent committed Oct 14, 2020
1 parent 255eb70 commit 8d6134f
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions tests/native/test_unicorn_concrete.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,20 +120,6 @@ def test_integration_basic_stdout(self):

self.assertEqual(left, right)

def test_integration_basic_stdout(self):
self.m.run()
self.concrete_instance.run()

self.m.finalize()
self.concrete_instance.finalize()

with open(os.path.join(self.m.workspace, "test_00000000.stdout"), "r") as f:
left = f.read().strip()
with open(os.path.join(self.concrete_instance.workspace, "test_00000000.stdout"), "r") as f:
right = f.read().strip()

self.assertEqual(left, right)


class ResumeUnicornPlugin(Plugin):
def will_run_callback(self, ready_states):
Expand Down

0 comments on commit 8d6134f

Please sign in to comment.