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
Jérome Perrin
gitlab-ce
Commits
eae3dedb
Commit
eae3dedb
authored
Aug 31, 2017
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove an unnecessary issue creation
This seemed to only exist to increment an issue counter by 1.
parent
d81f258d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
spec/features/issues/filtered_search/filter_issues_spec.rb
spec/features/issues/filtered_search/filter_issues_spec.rb
+3
-4
No files found.
spec/features/issues/filtered_search/filter_issues_spec.rb
View file @
eae3dedb
...
...
@@ -42,7 +42,6 @@ describe 'Filter issues', js: true do
sign_in
(
user
)
create
(
:issue
,
project:
project
)
create
(
:issue
,
project:
project
,
title:
"Bug report 1"
)
create
(
:issue
,
project:
project
,
title:
"Bug report 2"
)
create
(
:issue
,
project:
project
,
title:
"issue with 'single quotes'"
)
...
...
@@ -140,7 +139,7 @@ describe 'Filter issues', js: true do
input_filtered_search
(
'assignee:none'
)
expect_tokens
([
assignee_token
(
'none'
)])
expect_issues_list_count
(
8
,
1
)
expect_issues_list_count
(
7
,
1
)
expect_filtered_search_input_empty
end
end
...
...
@@ -177,7 +176,7 @@ describe 'Filter issues', js: true do
input_filtered_search
(
'label:none'
)
expect_tokens
([
label_token
(
'none'
,
false
)])
expect_issues_list_count
(
9
,
1
)
expect_issues_list_count
(
8
,
1
)
expect_filtered_search_input_empty
end
...
...
@@ -340,7 +339,7 @@ describe 'Filter issues', js: true do
input_filtered_search
(
"milestone:none"
)
expect_tokens
([
milestone_token
(
'none'
,
false
)])
expect_issues_list_count
(
7
,
1
)
expect_issues_list_count
(
6
,
1
)
expect_filtered_search_input_empty
end
...
...
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