Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
snf-ganeti
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
itminedu
snf-ganeti
Commits
c85d3b64
Commit
c85d3b64
authored
16 years ago
by
Michael Hanselmann
Browse files
Options
Downloads
Patches
Plain Diff
Whitespace fixes for remote API QA checks
Reviewed-by: ultrotter
parent
ed54b47e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
qa/qa_rapi.py
+6
-6
6 additions, 6 deletions
qa/qa_rapi.py
with
6 additions
and
6 deletions
qa/qa_rapi.py
+
6
−
6
View file @
c85d3b64
...
...
@@ -148,12 +148,12 @@ def TestInstance(instance):
def
_VerifyInstance
(
data
):
for
entry
in
INSTANCE_FIELDS
:
AssertIn
(
entry
,
data
)
def
_VerifyInstancesList
(
data
):
for
instance
in
data
:
for
entry
in
LIST_FIELDS
:
for
entry
in
LIST_FIELDS
:
AssertIn
(
entry
,
instance
)
def
_VerifyInstancesBulk
(
data
):
for
instance_data
in
data
:
_VerifyInstance
(
instance_data
)
...
...
@@ -172,12 +172,12 @@ def TestNode(node):
def
_VerifyNode
(
data
):
for
entry
in
NODE_FIELDS
:
AssertIn
(
entry
,
data
)
def
_VerifyNodesList
(
data
):
for
node
in
data
:
for
entry
in
LIST_FIELDS
:
for
entry
in
LIST_FIELDS
:
AssertIn
(
entry
,
node
)
def
_VerifyNodesBulk
(
data
):
for
node_data
in
data
:
_VerifyNode
(
node_data
)
...
...
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