From 3bc16021a47a06ff04eb9ab96d8c275bb118c501 Mon Sep 17 00:00:00 2001
From: Peter van 't Hof <p.j.van_t_hof@lumc.nl>
Date: Tue, 20 Sep 2016 18:31:41 +0200
Subject: [PATCH] Fixed unit tests

---
 .../nl/lumc/sasc/biopet/pipelines/gears/GearsSingleTest.scala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gears/src/test/scala/nl/lumc/sasc/biopet/pipelines/gears/GearsSingleTest.scala b/gears/src/test/scala/nl/lumc/sasc/biopet/pipelines/gears/GearsSingleTest.scala
index 943fba618..f6f91c9d4 100644
--- a/gears/src/test/scala/nl/lumc/sasc/biopet/pipelines/gears/GearsSingleTest.scala
+++ b/gears/src/test/scala/nl/lumc/sasc/biopet/pipelines/gears/GearsSingleTest.scala
@@ -124,10 +124,10 @@ abstract class TestGearsSingle extends TestNGSuite with Matchers {
       gears.functions.count(_.isInstanceOf[Kraken]) shouldBe (if (kraken.getOrElse(true)) 1 else 0)
       gears.functions.count(_.isInstanceOf[KrakenReport]) shouldBe (if (kraken.getOrElse(true)) 1 else 0)
       gears.functions.count(_.isInstanceOf[KrakenReportToJson]) shouldBe
-        ((if (kraken.getOrElse(true)) 1 else 0) + (if (centrifuge) 1 else 0))
+        ((if (kraken.getOrElse(true)) 1 else 0) + (if (centrifuge) 2 else 0))
 
       gears.functions.count(_.isInstanceOf[Centrifuge]) shouldBe (if (centrifuge) 1 else 0)
-      gears.functions.count(_.isInstanceOf[CentrifugeKreport]) shouldBe (if (centrifuge) 1 else 0)
+      gears.functions.count(_.isInstanceOf[CentrifugeKreport]) shouldBe (if (centrifuge) 2 else 0)
     }
   }
 }
-- 
GitLab