Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
cjmartian committed Jan 23, 2024
1 parent af77aec commit d5adcd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/octofacts/util/keys_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
it "should work" do
f = facts
result = described_class.downcase_keys!(f)
expect(f).to eq({foo: "foo-value", baz: "baz-value", bar: "bar-value", buzz: "buzz-value"})
expect(f).to eq({"foo": "foo-value", baz: "baz-value", "bar": "bar-value", buzz: "buzz-value"})
expect(result).to eq({"foo": "foo-value", baz: "baz-value", "bar": "bar-value", buzz: "buzz-value"})
end
end
Expand Down

0 comments on commit d5adcd4

Please sign in to comment.