diff options
author | Roman Rakus <rrakus@redhat.com> | 2013-07-11 14:25:48 +0200 |
---|---|---|
committer | Roman Rakus <rrakus@redhat.com> | 2013-07-16 13:30:47 +0200 |
commit | 607c7feaa11f124b835860a36f9a6f40871ac939 (patch) | |
tree | 7270aec78cfd8090a4ff7e6069c58d5d418591ea /src/account/test/TestMemberOfGroup.py | |
parent | 9e0fc62c22799d2c116ef68f4f153b5e7aa990bd (diff) | |
download | openlmi-providers-607c7feaa11f124b835860a36f9a6f40871ac939.tar.gz openlmi-providers-607c7feaa11f124b835860a36f9a6f40871ac939.tar.xz openlmi-providers-607c7feaa11f124b835860a36f9a6f40871ac939.zip |
Account: Use Account prefix in test logs
It makes test output more readable
Signed-off-by: Roman Rakus <rrakus@redhat.com>
Diffstat (limited to 'src/account/test/TestMemberOfGroup.py')
-rw-r--r-- | src/account/test/TestMemberOfGroup.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/account/test/TestMemberOfGroup.py b/src/account/test/TestMemberOfGroup.py index 2186db3..635ac24 100644 --- a/src/account/test/TestMemberOfGroup.py +++ b/src/account/test/TestMemberOfGroup.py @@ -28,7 +28,7 @@ class TestMemberOfGroup(AccountBase): """ def test_add_user_to_group(self): """ - Test to add user to group + Account: Test to add user to group """ create_account(self.user_name) create_group(self.group_name) @@ -45,7 +45,7 @@ class TestMemberOfGroup(AccountBase): def test_remove_user_from_group(self): """ - Test remove user from group + Account: Test remove user from group """ # make sure the account will exist create_account(self.user_name) @@ -60,7 +60,7 @@ class TestMemberOfGroup(AccountBase): def test_user_in_groups(self): """ - Test correct list of groups for user + Account: Test correct list of groups for user """ create_account(self.user_name) create_group(self.group_name) |