summaryrefslogtreecommitdiff
path: root/test/error.rb
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2012-03-08 15:23:43 +0000
committerChristoph Helma <helma@in-silico.ch>2012-03-08 15:23:43 +0000
commit63fcd8f8feed58af4b1e1ff0e5fdaa09791c9596 (patch)
tree97103c785013abd8fe2b3798f73ebec4bcb9e885 /test/error.rb
parent2f6d5c75fc1fece5fc10cc7c45ad59cf6b820d64 (diff)
improved integration of error reports, call stack added as errorDetails
Diffstat (limited to 'test/error.rb')
-rw-r--r--test/error.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/error.rb b/test/error.rb
index af5db52..d736620 100644
--- a/test/error.rb
+++ b/test/error.rb
@@ -6,7 +6,7 @@ class ErrorTest < Test::Unit::TestCase
def test_bad_request
object = OpenTox::Feature.new "http://this-is-a/fantasy/url"
- assert_raise OpenTox::BadRequestError do
+ assert_raise OpenTox::NotFoundError do
response = object.get
end
end