Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphael Sofaer <raphael@joindiaspora.com>2011-08-17 02:07:25 +0400
committerRaphael Sofaer <raphael@joindiaspora.com>2011-08-17 02:07:25 +0400
commita5d9d6d212d5793af21b13587e5c895f6016b628 (patch)
tree85d37416fa08608aa924b8745d9bdc7b0e43764a /db/seeds.rb
parentf2e079f53240a406650c8d0fdd21ff7abec1408b (diff)
Remove reference to invites counter from db seeds, close #1778
Diffstat (limited to 'db/seeds.rb')
-rw-r--r--db/seeds.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/db/seeds.rb b/db/seeds.rb
index 53e29fd9a..1800ec806 100644
--- a/db/seeds.rb
+++ b/db/seeds.rb
@@ -15,9 +15,9 @@ require 'factory_girl_rails'
require File.join(File.dirname(__FILE__), "..", "spec", "helper_methods")
include HelperMethods
-alice = Factory(:user_with_aspect, :username => "alice", :password => 'evankorth', :invites => 10)
-bob = Factory(:user_with_aspect, :username => "bob", :password => 'evankorth', :invites => 10)
-eve = Factory(:user_with_aspect, :username => "eve", :password => 'evankorth', :invites => 10)
+alice = Factory(:user_with_aspect, :username => "alice", :password => 'evankorth')
+bob = Factory(:user_with_aspect, :username => "bob", :password => 'evankorth')
+eve = Factory(:user_with_aspect, :username => "eve", :password => 'evankorth')
print "Creating seeded users... "
alice.person.profile.update_attributes(:first_name => "Alice", :last_name => "Smith",