aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_json.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/test/test_json.rb')
-rw-r--r--Library/Homebrew/test/test_json.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/test/test_json.rb b/Library/Homebrew/test/test_json.rb
index 458cfd123..6bece67c0 100644
--- a/Library/Homebrew/test/test_json.rb
+++ b/Library/Homebrew/test/test_json.rb
@@ -3,8 +3,8 @@ require 'vendor/multi_json'
class JsonSmokeTest < Test::Unit::TestCase
def test_encode
- hash = { "foo" => ["bar", "baz"], "qux" => 1 }
- json = %q|{"foo":["bar","baz"],"qux":1}|
+ hash = { "foo" => ["bar", "baz"] }
+ json = %q|{"foo":["bar","baz"]}|
assert_equal json, MultiJson.encode(hash)
end