summaryrefslogtreecommitdiff
path: root/test/controllers/teams_controller_test.rb
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-22 15:53:32 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-22 15:53:32 -0400
commitc927cd7c043d982f8ffb51c8a78288d88d825d82 (patch)
tree600b2ad18f8faa3ff5d31bfe6ac61edf59fb8bc9 /test/controllers/teams_controller_test.rb
parentd36c548ca756f8371c08991287e3625d031cf8b3 (diff)
run ./generate.sh
Diffstat (limited to 'test/controllers/teams_controller_test.rb')
-rw-r--r--test/controllers/teams_controller_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/controllers/teams_controller_test.rb b/test/controllers/teams_controller_test.rb
index 52f7c17..8bf60be 100644
--- a/test/controllers/teams_controller_test.rb
+++ b/test/controllers/teams_controller_test.rb
@@ -18,7 +18,7 @@ class TeamsControllerTest < ActionController::TestCase
test "should create team" do
assert_difference('Team.count') do
- post :create, team: { match_id: @team.match_id }
+ post :create, team: { }
end
assert_redirected_to team_path(assigns(:team))
@@ -35,7 +35,7 @@ class TeamsControllerTest < ActionController::TestCase
end
test "should update team" do
- patch :update, id: @team, team: { match_id: @team.match_id }
+ patch :update, id: @team, team: { }
assert_redirected_to team_path(assigns(:team))
end