Skip to content

Commit

Permalink
Remove useless parens
Browse files Browse the repository at this point in the history
  • Loading branch information
spastorino committed Sep 4, 2011
1 parent 4fa403c commit 04c25a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion railties/test/railties/shared_tests.rb
Expand Up @@ -75,7 +75,7 @@ class CreateYaffles < ActiveRecord::Migration
bukkits_migration_order = output.index(output.detect{|o| /NOTE: Migration 3_create_sessions.rb from bukkits has been skipped/ =~ o })
assert_not_nil yaffle_migration_order, "Expected migration to be copied"
assert_not_nil bukkits_migration_order, "Expected migration to be skipped"
assert_equal((railties.index('acts_as_yaffle') > railties.index('bukkits')) , (yaffle_migration_order > bukkits_migration_order))
assert_equal(railties.index('acts_as_yaffle') > railties.index('bukkits'), yaffle_migration_order > bukkits_migration_order)

migrations_count = Dir["#{app_path}/db/migrate/*.rb"].length
output = `bundle exec rake railties:install:migrations`
Expand Down

0 comments on commit 04c25a7

Please sign in to comment.