Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mirrors
biopet.biopet
Commits
a6f403df
Commit
a6f403df
authored
Oct 05, 2016
by
Peter van 't Hof
Browse files
Fixed unit test
parent
a0ee046e
Changes
1
Hide whitespace changes
Inline
Side-by-side
gears/src/test/scala/nl/lumc/sasc/biopet/pipelines/gears/GearsSingleTest.scala
View file @
a6f403df
...
...
@@ -129,7 +129,7 @@ abstract class TestGearsSingle extends TestNGSuite with Matchers {
gears
.
functions
.
count
(
_
.
isInstanceOf
[
KrakenReportToJson
])
shouldBe
((
if
(
kraken
.
getOrElse
(
true
))
1
else
0
)
+
(
if
(
centrifuge
)
2
else
0
))
pipesJob
s
.
count
(
_
.
isInstanceOf
[
Centrifuge
])
shouldBe
(
if
(
centrifuge
)
1
else
0
)
gears
.
function
s
.
count
(
_
.
isInstanceOf
[
Centrifuge
])
shouldBe
(
if
(
centrifuge
)
1
else
0
)
gears
.
functions
.
count
(
_
.
isInstanceOf
[
CentrifugeKreport
])
shouldBe
(
if
(
centrifuge
)
2
else
0
)
}
}
...
...
Write
Preview
Supports
Markdown
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!
Cancel
Please
register
or
sign in
to comment