jsonnet: replace Utils::JSON with corelib JSON.
This commit is contained in:
parent
9340f46bd8
commit
ff0e136c3b
1 changed files with 1 additions and 3 deletions
|
@ -22,8 +22,6 @@ class Jsonnet < Formula
|
|||
end
|
||||
|
||||
test do
|
||||
require "utils/json"
|
||||
|
||||
(testpath/"example.jsonnet").write <<-EOS
|
||||
{
|
||||
person1: {
|
||||
|
@ -46,6 +44,6 @@ class Jsonnet < Formula
|
|||
}
|
||||
|
||||
output = shell_output("#{bin}/jsonnet #{testpath}/example.jsonnet")
|
||||
assert_equal expected_output, Utils::JSON.load(output)
|
||||
assert_equal expected_output, JSON.parse(output)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue