Fix the test.

This commit is contained in:
joshaber 2016-05-31 15:26:24 -04:00
parent 41f9c16130
commit 05e6d1eea6

View file

@ -17,7 +17,7 @@ describe('UsersStore', () => {
usersStore.addUser(new User(newUserLogin, '', ''))
const users = usersStore.getUsers()
expect(users[0].getLogin()).to.equal('newUserLogin')
expect(users[0].getLogin()).to.equal(newUserLogin)
})
it('notifies when a user is added', () => {