summaryrefslogtreecommitdiff
path: root/test/unit/error_response_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/error_response_test.rb')
-rw-r--r--test/unit/error_response_test.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/unit/error_response_test.rb b/test/unit/error_response_test.rb
index 7242b38..5b81e46 100644
--- a/test/unit/error_response_test.rb
+++ b/test/unit/error_response_test.rb
@@ -2,11 +2,9 @@ require 'test_helper'
require 'nickserver/error_response'
class ErrorResponseTest < Minitest::Test
-
def test_content
- response = Nickserver::ErrorResponse.new "Not a valid address"
+ response = Nickserver::ErrorResponse.new 'Not a valid address'
assert_equal "500 Not a valid address\n", response.content
assert_equal 500, response.status
end
-
end