Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
0b63ac08
Commit
0b63ac08
authored
Nov 14, 2018
by
Ryan Herbert
Browse files
test_sample.rb use || instead of or
parent
6d5be773
Pipeline
#49568
passed with stages
in 11 minutes and 19 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
server/web2py/applications/vidjil/tests/functional/test_sample.rb
View file @
0b63ac08
...
...
@@ -279,6 +279,6 @@ class TestSample < ServerTest
lines
=
table
.
tbody
.
rows
lines
[
0
].
wait_until_present
l
=
lines
[
0
]
assert
(
l
.
td
(
:text
=>
"QUEUED"
).
present?
or
l
.
td
(
:text
=>
"ASSIGNED"
).
present?
or
l
.
td
(
:text
=>
"COMPLETED"
).
present?
)
assert
(
l
.
td
(
:text
=>
"QUEUED"
).
present?
||
l
.
td
(
:text
=>
"ASSIGNED"
).
present?
||
l
.
td
(
:text
=>
"COMPLETED"
).
present?
)
end
end
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment