Skip to content

Commit

Permalink
Happy rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
mchf committed Dec 2, 2015
1 parent dd1dbf6 commit 8fbb1d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/host_test.rb
Expand Up @@ -19,7 +19,7 @@

it "Successfully exports stored mapping" do
allow(host).to receive(:hosts).and_return(etc_hosts)
expect(host.Export).to eql({ "hosts" => etc_hosts })
expect(host.Export).to eql("hosts" => etc_hosts)
end
end

Expand All @@ -32,7 +32,7 @@
end

it "doesn't drop records with two spaces" do
host.Import({ "hosts" => etc_hosts })
host.Import("hosts" => etc_hosts)
host.Update("", "newname", ["10.0.0.42"])

tested_ip = "10.0.0.1"
Expand Down

0 comments on commit 8fbb1d1

Please sign in to comment.