From 396302559f8c79e9be1d3f9c6eff7dc34e7fe051 Mon Sep 17 00:00:00 2001 From: Chris Doherty Date: Fri, 7 Aug 2015 13:13:31 -0700 Subject: [PATCH] Fix sense typos in test names. --- spec/integration/rspec/converge_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/integration/rspec/converge_spec.rb b/spec/integration/rspec/converge_spec.rb index 5482f36..b3f3fa9 100644 --- a/spec/integration/rspec/converge_spec.rb +++ b/spec/integration/rspec/converge_spec.rb @@ -17,7 +17,7 @@ expect(IO.read(tempfile.path)).to eq '' end - it "recipe 'file ...' updates the file" do + it "recipe 'file ...' does not update the file" do result = recipe <<-EOM file tempfile.path do content 'test' @@ -27,7 +27,7 @@ expect(IO.read(tempfile.path)).to eq '' end - it "recipe 'file ...' with file and line number updates the file" do + it "recipe 'file ...' with file and line number does not update the file" do result = recipe(<<-EOM, __FILE__, __LINE__+1) file tempfile.path do content 'test'