diff options
author | James McKinney <james@slashpoundbang.com> | 2011-10-11 20:51:57 -0400 |
---|---|---|
committer | James McKinney <james@slashpoundbang.com> | 2011-10-11 20:51:57 -0400 |
commit | b7b307e6bb46bb342352bd92f973a1343220fd43 (patch) | |
tree | cb4993f22a2a2d07184521ab62edf924044e07ad /spec/controllers/admin_track_controller_spec.rb | |
parent | 19d15135c27d04bb822cc667fddc6305a7d3359c (diff) |
fix fixtures order to avoid postgresql foreign key errors
Diffstat (limited to 'spec/controllers/admin_track_controller_spec.rb')
-rw-r--r-- | spec/controllers/admin_track_controller_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/controllers/admin_track_controller_spec.rb b/spec/controllers/admin_track_controller_spec.rb index 4d5b0ac5e..3db242f73 100644 --- a/spec/controllers/admin_track_controller_spec.rb +++ b/spec/controllers/admin_track_controller_spec.rb @@ -2,7 +2,7 @@ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') describe AdminTrackController, "when administering tracks" do integrate_views - fixtures :track_things, :users + fixtures :users, :track_things it "shows the list page" do get :list |