From f727a1458954320781a311f6f9fe8b8a016b61e4 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 13 Sep 2012 12:08:10 -0400 Subject: [PATCH] storage:vcs:base: fix _gets_ -> _get_ typo in test_gets_existing_user_id. VCS_get_user_id_TestCase.test_gets_existing_user_id is now VCS_get_user_id_TestCase.test_get_existing_user_id --- libbe/storage/vcs/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbe/storage/vcs/base.py b/libbe/storage/vcs/base.py index 0f36d2b..098b2d0 100644 --- a/libbe/storage/vcs/base.py +++ b/libbe/storage/vcs/base.py @@ -1169,7 +1169,7 @@ if libbe.TESTING == True: class VCS_get_user_id_TestCase(VCSTestCase): """Test cases for VCS.get_user_id method.""" - def test_gets_existing_user_id(self): + def test_get_existing_user_id(self): """Should get the existing user ID.""" if self.s.installed(): user_id = self.s.get_user_id() -- 2.26.2