Skip to content

Commit

Permalink
test_create_user_not_existent_column
Browse files Browse the repository at this point in the history
  • Loading branch information
squirrelo committed Jun 11, 2014
1 parent 477caef commit 8f388b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qiita_db/test/test_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def test_create_user_column_not_allowed(self):
with self.assertRaises(QiitaDBColumnError):
User.create('new@test.bar', 'password', self.userinfo)

def test_create_user_not_info(self):
def test_create_user_non_existent_column(self):
self.userinfo["BADTHING"] = "FAIL"
with self.assertRaises(QiitaDBColumnError):
User.create('new@test.bar', 'password', self.userinfo)
Expand Down

0 comments on commit 8f388b0

Please sign in to comment.