summaryrefslogtreecommitdiff
path: root/bin/run_tests
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2014-12-05 17:47:41 +0100
committervarac <varacanero@zeromail.org>2014-12-05 17:47:41 +0100
commit51a49227f83a615f9845461385beba5ef607967d (patch)
treea674f1a612d699255602898dbbcb8f6060d0d44b /bin/run_tests
parent049b29370e406cb424254f3be9a283f83f9e92d8 (diff)
parent7ca1a6feb2f881f2a99b624c266f0779d2402ff9 (diff)
Merge branch 'develop' of ssh://code.leap.se/leap_platform into develop
Diffstat (limited to 'bin/run_tests')
-rwxr-xr-xbin/run_tests6
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
##