diff options
author | varac <varacanero@zeromail.org> | 2014-12-05 17:47:41 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2014-12-05 17:47:41 +0100 |
commit | 51a49227f83a615f9845461385beba5ef607967d (patch) | |
tree | a674f1a612d699255602898dbbcb8f6060d0d44b /bin | |
parent | 049b29370e406cb424254f3be9a283f83f9e92d8 (diff) | |
parent | 7ca1a6feb2f881f2a99b624c266f0779d2402ff9 (diff) |
Merge branch 'develop' of ssh://code.leap.se/leap_platform into develop
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/run_tests | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/run_tests b/bin/run_tests index 4addc0c8..44384379 100755 --- a/bin/run_tests +++ b/bin/run_tests @@ -49,15 +49,15 @@ end # this class is raised if a test file wants to be skipped entirely. # (to skip an individual test, MiniTest::Skip is used instead) -class SkipTest < Exception +class SkipTest < StandardError end # raised if --no-continue and there is an error -class TestError < Exception +class TestError < StandardError end # raised if --no-continue and there is a failure -class TestFailure < Exception +class TestFailure < StandardError end ## |