From b06bc355e3facabeb964c7dc6a0c966cbbea4bc4 Mon Sep 17 00:00:00 2001 From: David Chelimsky Date: Sun, 5 Feb 2012 10:20:28 -0600 Subject: [PATCH] fix copy/paste oversight --- features/mock_framework_integration/use_flexmock.feature | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/mock_framework_integration/use_flexmock.feature b/features/mock_framework_integration/use_flexmock.feature index ab25a52184..261832e5c2 100644 --- a/features/mock_framework_integration/use_flexmock.feature +++ b/features/mock_framework_integration/use_flexmock.feature @@ -9,7 +9,7 @@ Feature: mock with flexmock config.mock_framework = :flexmock end - describe "mocking with RSpec" do + describe "mocking with Flexmock" do it "passes when it should" do receiver = flexmock('receiver') receiver.should_receive(:message).once @@ -27,7 +27,7 @@ Feature: mock with flexmock config.mock_framework = :flexmock end - describe "mocking with RSpec" do + describe "mocking with Flexmock" do it "fails when it should" do receiver = flexmock('receiver') receiver.should_receive(:message).once