diff options
author | Robin Houston <robin.houston@gmail.com> | 2012-03-13 01:40:15 +0000 |
---|---|---|
committer | Robin Houston <robin.houston@gmail.com> | 2012-03-13 01:40:15 +0000 |
commit | 1fd67376e4ff52f4727b5108f20a25940276ba9f (patch) | |
tree | 989922968559d7818e0c1c531ef64256174b2d31 | |
parent | db7210ebfd9a433232aaafef422e040cf5baf21d (diff) |
Correct bad nesting
-rw-r--r-- | spec/controllers/request_controller_spec.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/spec/controllers/request_controller_spec.rb b/spec/controllers/request_controller_spec.rb index 19938ac61..180577f0d 100644 --- a/spec/controllers/request_controller_spec.rb +++ b/spec/controllers/request_controller_spec.rb @@ -1743,8 +1743,9 @@ describe RequestController, "when doing type ahead searches" do get :search_typeahead, :q => "dog -chicken" assigns[:xapian_requests].results.size.should == 1 end +end -describe "when showing similar requests" do +describe RequestController, "when showing similar requests" do integrate_views it "should work" do @@ -1768,6 +1769,4 @@ describe "when showing similar requests" do end end -end - |