Skip to content

Commit

Permalink
Merge pull request #159 from ChihweiLHBird/cap
Browse files Browse the repository at this point in the history
Correct an unit test case
  • Loading branch information
rgerkin committed Jul 6, 2020
2 parents 382019b + 6696e19 commit 7c32333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sciunit/unit_test/model_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def fn1(self):

class MyCap3(Capability):
def fn1(self):
raise CapabilityNotImplementedError("fn1 not implemented.")
raise CapabilityNotImplementedError(model = self, capability = self.__class__, details = "fn1 not implemented.")


class MyModel1(Model, MyCap1):
Expand Down

0 comments on commit 7c32333

Please sign in to comment.