Skip to content

Commit

Permalink
better wording
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Nov 7, 2016
1 parent 4b1ec85 commit b27f738
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/general/test/agents_test/fstab_agent_test.rb
Expand Up @@ -16,13 +16,13 @@
expect(content).to be_a(Array)
end

it "returned array contains nfs entries" do
it "returns an array containing nfs entries" do
expect(content).to satisfy { |r| r.find { |e| e["file"] == "/home/kv2" } }
expect(content).to satisfy { |r| r.find { |e| e["file"] == "/media/new" } }
expect(content).to satisfy { |r| r.find { |e| e["file"] == "/media/new2" } }
end

it "returned array contains tmpfs entry" do
it "returns an array containing tmpfs entry" do
expect(content).to satisfy { |r| r.find { |e| e["file"] == "/tmp" } }
end

Expand Down

0 comments on commit b27f738

Please sign in to comment.