Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
backend
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Bioinformatics
backend
Commits
e2a486ef
Commit
e2a486ef
authored
1 year ago
by
Michal Petrovič
Browse files
Options
Downloads
Patches
Plain Diff
fix tests
parent
4f2807ea
Branches
Branches containing commit
1 merge request
!14
Resolve "Job Failed #648600"
Pipeline
#181241
passed with stages
Stage:
Stage:
Stage:
in 4 minutes and 58 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/test/groovy/cz/mendelu/dnaAnalyser/analyse/zdna/ZdnaTest.groovy
+4
-4
4 additions, 4 deletions
...roovy/cz/mendelu/dnaAnalyser/analyse/zdna/ZdnaTest.groovy
with
4 additions
and
4 deletions
src/test/groovy/cz/mendelu/dnaAnalyser/analyse/zdna/ZdnaTest.groovy
+
4
−
4
View file @
e2a486ef
...
...
@@ -15,7 +15,7 @@ class ZdnaTest extends Specification {
int
minSequenceSize
=
10
float
threshold
=
0
when:
def
result
=
zdna
.
getResults
(
window
,
minSequenceSize
,
threshold
)
def
result
=
zdna
.
getResults
(
window
,
minSequenceSize
,
threshold
,
25
,
3
,
3
,
0
)
then:
result
[
0
].
position
==
6
result
[
0
].
length
==
27
...
...
@@ -31,7 +31,7 @@ class ZdnaTest extends Specification {
int
minSequenceSize
=
10
float
threshold
=
0
when:
def
result
=
zdna
.
getResults
(
window
,
minSequenceSize
,
threshold
)
def
result
=
zdna
.
getResults
(
window
,
minSequenceSize
,
threshold
,
25
,
3
,
3
,
0
)
then:
result
[
1
].
position
==
37
result
[
1
].
length
==
16
...
...
@@ -47,7 +47,7 @@ class ZdnaTest extends Specification {
int
minSequenceSize
=
10
float
threshold
=
40
when:
def
result
=
zdna
.
getResults
(
window
,
minSequenceSize
,
threshold
)
def
result
=
zdna
.
getResults
(
window
,
minSequenceSize
,
threshold
,
25
,
3
,
3
,
0
)
then:
result
[
0
].
position
==
37
result
[
0
].
length
==
16
...
...
@@ -61,7 +61,7 @@ class ZdnaTest extends Specification {
int
minSequenceSize
=
10
float
threshold
=
200
when:
def
result
=
zdna
.
getResults
(
window
,
minSequenceSize
,
threshold
)
def
result
=
zdna
.
getResults
(
window
,
minSequenceSize
,
threshold
,
25
,
3
,
3
,
0
)
then:
result
==
[]
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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