Navigation Menu

Skip to content

Commit

Permalink
Remove needless new line from groonga-httpd response
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jan 26, 2015
1 parent 370d5ad commit 7fd688b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/grntest/executors/http-executor.rb
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2012-2013 Kouhei Sutou <kou@clear-code.com>
# Copyright (C) 2012-2015 Kouhei Sutou <kou@clear-code.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -94,7 +94,7 @@ def normalize_response_data(raw_response_data)
if raw_response_data.empty?
raw_response_data
else
"#{raw_response_data}\n"
"#{raw_response_data.chomp}\n"
end
end
end
Expand Down

0 comments on commit 7fd688b

Please sign in to comment.