Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
benbovy committed Jun 26, 2017
1 parent a713ba8 commit 0f46d00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xsimlab/tests/test_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ def test_variables(self):
def test_meta(self):
self.assertDictEqual(self.my_process.meta, {'time_dependent': False})

def name(self):
def test_name(self):
self.assertEqual(self.my_process.name, "MyProcess")

self.my_process._name = "my_process"
self.assertEqual(self.my_process.name, "my_process")

def run_step(self):
def test_run_step(self):
with self.assertRaisesRegex(NotImplementedError, "no method"):
self.my_process.run_step(1)

0 comments on commit 0f46d00

Please sign in to comment.