Navigation Menu

Skip to content

Commit

Permalink
Ensure result data binary
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 31, 2017
1 parent 07e1354 commit 11147b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/grntest/test-runner.rb
Expand Up @@ -536,11 +536,11 @@ def create_empty_database(db_path)
end

def normalize_actual_result(result)
normalized_result = ""
normalized_result = "".b
result.actual.each do |tag, content, options|
case tag
when :input
normalized_result << content
normalized_result << content.b
when :output
normalized_result << normalize_output(content, options)
when :error
Expand Down

0 comments on commit 11147b6

Please sign in to comment.