spec/controllers/location_spec.rb in wagn-1.16.6 vs spec/controllers/location_spec.rb in wagn-1.16.7

- old
+ new

@@ -10,17 +10,17 @@ login_as 'joe_user' end describe 'previous location'do it "gets updated after viewing" do - get :read, :id=>"Joe_User" + get :read, id: "Joe_User" assert_equal "/Joe_User", Card::Env.previous_location end it "doesn't link to nonexistent cards" do - get :read, :id=>"Joe_User" - get :read, :id=>"Not_Me" - get :read, :id=>'*previous' + get :read, id: "Joe_User" + get :read, id: "Not_Me" + get :read, id: '*previous' assert_redirected_to '/Joe_User' end end