summaryrefslogtreecommitdiff
path: root/test/integration/dispatcher_test.rb
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2017-05-11 09:55:03 +0200
committerAzul <azul@riseup.net>2017-05-11 10:13:40 +0200
commit1f69b76ef30d9e064537e4e82b9d4f51be558afe (patch)
treeff7918907de8b6442ba3021de32679b03e0e9673 /test/integration/dispatcher_test.rb
parent59cf7e32ecd8c133b1ddffa40b6f104761d81738 (diff)
respond with 400 on invalid inputbugfix/400
Diffstat (limited to 'test/integration/dispatcher_test.rb')
-rw-r--r--test/integration/dispatcher_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/dispatcher_test.rb b/test/integration/dispatcher_test.rb
index b551e87..b2582bd 100644
--- a/test/integration/dispatcher_test.rb
+++ b/test/integration/dispatcher_test.rb
@@ -123,7 +123,7 @@ class Nickserver::DispatcherTest < Minitest::Test
end
def error(msg)
- response status: 500, content: "500 #{msg}\n"
+ response status: 400, content: JSON.generate(error: msg)
end
def http_connection_error