From 2ec8657308587cd0482827d38a0517f613fc9730 Mon Sep 17 00:00:00 2001 From: Bernerd Schaefer Date: Fri, 17 Sep 2010 20:22:38 -0500 Subject: [PATCH] Fix typo in has_field spec --- lib/capybara/spec/session/has_field_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/capybara/spec/session/has_field_spec.rb b/lib/capybara/spec/session/has_field_spec.rb index 00e64fea..261888cb 100644 --- a/lib/capybara/spec/session/has_field_spec.rb +++ b/lib/capybara/spec/session/has_field_spec.rb @@ -42,7 +42,7 @@ shared_examples_for "has_field" do end context 'with value' do - it "should be flase if a field with the given value is on the page" do + it "should be false if a field with the given value is on the page" do @session.should_not have_no_field('First Name', :with => 'John') @session.should_not have_no_field('Phone', :with => '+1 555 7021') @session.should_not have_no_field('Street', :with => 'Sesame street 66')