Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Ansible FreeIPA
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
Ansible FreeIPA
Commits
7b6bc32f
Commit
7b6bc32f
authored
9 months ago
by
Thomas Woerner
Browse files
Options
Downloads
Patches
Plain Diff
tests/utils.py: Fix missing whitespace around arithmetic operator (E226)
parent
6b3fb78d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/utils.py
+6
-6
6 additions, 6 deletions
tests/utils.py
with
6 additions
and
6 deletions
tests/utils.py
+
6
−
6
View file @
7b6bc32f
...
...
@@ -306,14 +306,14 @@ class AnsibleFreeIPATestCase(TestCase):
if
res
.
rc
!=
0
:
for
output
in
expected_output
:
assert
self
.
__is_text_on_data
(
output
,
res
.
stderr
),
(
f
"
\n
{
'
=
'
*
40
}
\n
Expected:
{
output
}
\n
{
'
=
'
*
40
}
\n
"
+
f
"
Output:
\n
{
res
.
stderr
}{
'
=
'
*
40
}
\n
"
f
"
\n
{
'
=
'
*
40
}
\n
Expected:
{
output
}
\n
{
'
=
'
*
40
}
\n
"
+
f
"
Output:
\n
{
res
.
stderr
}{
'
=
'
*
40
}
\n
"
)
else
:
for
output
in
expected_output
:
assert
self
.
__is_text_on_data
(
output
,
res
.
stdout
),
(
f
"
\n
{
'
=
'
*
40
}
\n
Expected:
{
output
}
\n
{
'
=
'
*
40
}
\n
"
+
f
"
Output:
\n
{
res
.
stdout
}{
'
=
'
*
40
}
\n
"
f
"
\n
{
'
=
'
*
40
}
\n
Expected:
{
output
}
\n
{
'
=
'
*
40
}
\n
"
+
f
"
Output:
\n
{
res
.
stdout
}{
'
=
'
*
40
}
\n
"
)
kdestroy
(
self
.
master
)
...
...
@@ -325,8 +325,8 @@ class AnsibleFreeIPATestCase(TestCase):
res
=
self
.
master
.
run
(
cmd
)
for
member
in
members
:
assert
not
self
.
__is_text_on_data
(
member
,
res
.
stdout
),
(
f
"
\n
{
'
=
'
*
40
}
\n
Expected:
{
member
}
\n
{
'
=
'
*
40
}
\n
"
+
f
"
Output:
\n
{
res
.
stdout
}{
'
=
'
*
40
}
\n
"
f
"
\n
{
'
=
'
*
40
}
\n
Expected:
{
member
}
\n
{
'
=
'
*
40
}
\n
"
+
f
"
Output:
\n
{
res
.
stdout
}{
'
=
'
*
40
}
\n
"
)
kdestroy
(
self
.
master
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment