summaryrefslogtreecommitdiffstats
path: root/src/tests/intg/ent_test.py
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2015-10-23 08:52:49 +0200
committerLukas Slebodnik <lslebodn@redhat.com>2015-10-26 07:15:26 +0100
commit46c89176fd7f140d785bbdc399a94daca269172e (patch)
treea872ab074e900b034597467f4dbbf61a7cf04118 /src/tests/intg/ent_test.py
parente563de9203be581acc30c7794f568ae40d22bee0 (diff)
downloadsssd-46c89176fd7f140d785bbdc399a94daca269172e.tar.gz
sssd-46c89176fd7f140d785bbdc399a94daca269172e.tar.xz
sssd-46c89176fd7f140d785bbdc399a94daca269172e.zip
intg_tests: Fix PEP8 warnings
Reviewed-by: Michal Židek <mzidek@redhat.com>
Diffstat (limited to 'src/tests/intg/ent_test.py')
-rw-r--r--src/tests/intg/ent_test.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tests/intg/ent_test.py b/src/tests/intg/ent_test.py
index abba94a24..598930324 100644
--- a/src/tests/intg/ent_test.py
+++ b/src/tests/intg/ent_test.py
@@ -169,7 +169,7 @@ def test_assert_each_passwd_by_name(users_and_groups):
assert False
except AssertionError as e:
assert str(e) == \
- "user 'user1' mismatch: 'name' mismatch: 'user2' != 'user1'"
+ "user 'user1' mismatch: 'name' mismatch: 'user2' != 'user1'"
def test_assert_each_passwd_by_uid(users_and_groups):
@@ -186,7 +186,7 @@ def test_assert_each_passwd_by_uid(users_and_groups):
assert False
except AssertionError as e:
assert str(e) == \
- "user 1001 mismatch: 'uid' mismatch: 1002 != 1001"
+ "user 1001 mismatch: 'uid' mismatch: 1002 != 1001"
def test_assert_each_passwd_with_name(users_and_groups):
@@ -203,7 +203,7 @@ def test_assert_each_passwd_with_name(users_and_groups):
assert False
except AssertionError as e:
assert str(e) == \
- "user 'user1' mismatch: 'uid' mismatch: 1002 != 1001"
+ "user 'user1' mismatch: 'uid' mismatch: 1002 != 1001"
def test_assert_each_passwd_with_uid(users_and_groups):
@@ -220,7 +220,7 @@ def test_assert_each_passwd_with_uid(users_and_groups):
assert False
except AssertionError as e:
assert str(e) == \
- "user 1001 mismatch: 'name' mismatch: 'user2' != 'user1'"
+ "user 1001 mismatch: 'name' mismatch: 'user2' != 'user1'"
def test_assert_passwd(users_and_groups):
@@ -381,7 +381,7 @@ def test_assert_each_group_by_gid(users_and_groups):
assert False
except AssertionError as e:
assert str(e) == \
- "group 2001 mismatch: 'gid' mismatch: 2002 != 2001"
+ "group 2001 mismatch: 'gid' mismatch: 2002 != 2001"
def test_assert_each_group_with_name(users_and_groups):
@@ -398,7 +398,7 @@ def test_assert_each_group_with_name(users_and_groups):
assert False
except AssertionError as e:
assert str(e) == \
- "group 'group1' mismatch: 'gid' mismatch: 2002 != 2001"
+ "group 'group1' mismatch: 'gid' mismatch: 2002 != 2001"
def test_assert_each_group_with_gid(users_and_groups):
@@ -415,7 +415,7 @@ def test_assert_each_group_with_gid(users_and_groups):
assert False
except AssertionError as e:
assert str(e) == \
- "group 2001 mismatch: 'name' mismatch: 'group2' != 'group1'"
+ "group 2001 mismatch: 'name' mismatch: 'group2' != 'group1'"
def test_assert_group(users_and_groups):