Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
c8f13cc5
Commit
c8f13cc5
authored
6 years ago
by
Shinya Maeda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix existing key logic in test suite
parent
85af3ea2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/gitlab/ci/reports/test_suite.rb
lib/gitlab/ci/reports/test_suite.rb
+2
-2
No files found.
lib/gitlab/ci/reports/test_suite.rb
View file @
c8f13cc5
...
@@ -14,7 +14,7 @@ module Gitlab
...
@@ -14,7 +14,7 @@ module Gitlab
end
end
def
add_test_case
(
test_case
)
def
add_test_case
(
test_case
)
@duplicate_cases
<<
test_case
unless
unique
_key?
(
test_case
)
@duplicate_cases
<<
test_case
if
existing
_key?
(
test_case
)
@test_cases
[
test_case
.
status
]
||=
{}
@test_cases
[
test_case
.
status
]
||=
{}
@test_cases
[
test_case
.
status
][
test_case
.
key
]
=
test_case
@test_cases
[
test_case
.
status
][
test_case
.
key
]
=
test_case
...
@@ -45,7 +45,7 @@ module Gitlab
...
@@ -45,7 +45,7 @@ module Gitlab
private
private
def
unique
_key?
(
test_case
)
def
existing
_key?
(
test_case
)
@test_cases
[
test_case
.
status
]
&
.
key?
(
test_case
.
key
)
@test_cases
[
test_case
.
status
]
&
.
key?
(
test_case
.
key
)
end
end
end
end
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
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