update account_spec
This commit is contained in:
		
							parent
							
								
									7762467b47
								
							
						
					
					
						commit
						46c0e8b0e7
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -223,7 +223,7 @@ RSpec.describe Account, type: :model do
 | 
				
			||||||
      expect(account).to model_have_error_on_field(:username)
 | 
					      expect(account).to model_have_error_on_field(:username)
 | 
				
			||||||
    end
 | 
					    end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    it 'is invalid is the username already exists' do
 | 
					    it 'is invalid if the username already exists' do
 | 
				
			||||||
      account_1 = Fabricate(:account, username: 'the_doctor')
 | 
					      account_1 = Fabricate(:account, username: 'the_doctor')
 | 
				
			||||||
      account_2 = Fabricate.build(:account, username: 'the_doctor')
 | 
					      account_2 = Fabricate.build(:account, username: 'the_doctor')
 | 
				
			||||||
      account_2.valid?
 | 
					      account_2.valid?
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue