From 953e054c3c66a306d6dc6b1e372a4b5160255b77 Mon Sep 17 00:00:00 2001
From: Peter van 't Hof <p.j.van_t_hof@lumc.nl>
Date: Thu, 12 Feb 2015 20:58:03 +0100
Subject: [PATCH] Fix typos

---
 .../biopet/pipelines/flexiprep/FlexiprepTest.scala   | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/public/flexiprep/src/test/scala/nl/lumc/sasc/biopet/pipelines/flexiprep/FlexiprepTest.scala b/public/flexiprep/src/test/scala/nl/lumc/sasc/biopet/pipelines/flexiprep/FlexiprepTest.scala
index e3953235e..208f1c41a 100644
--- a/public/flexiprep/src/test/scala/nl/lumc/sasc/biopet/pipelines/flexiprep/FlexiprepTest.scala
+++ b/public/flexiprep/src/test/scala/nl/lumc/sasc/biopet/pipelines/flexiprep/FlexiprepTest.scala
@@ -26,7 +26,7 @@ class FlexiprepTest extends TestNGSuite with Matchers {
     }
   }
 
-  @Test def TestDefault = {
+  @Test def testDefault = {
     val map = ConfigUtils.mergeMaps(Map("output_dir" -> FlexiprepTest.outputDir), Map(FlexiprepTest.excutables.toSeq: _*))
     val flexiprep: Flexiprep = initPipeline(map)
 
@@ -44,7 +44,7 @@ class FlexiprepTest extends TestNGSuite with Matchers {
     flexiprep.functions.count(_.isInstanceOf[Gzip]) shouldBe 1
   }
 
-  @Test def TestDefaultPaired = {
+  @Test def testDefaultPaired = {
     val map = ConfigUtils.mergeMaps(Map("output_dir" -> FlexiprepTest.outputDir), Map(FlexiprepTest.excutables.toSeq: _*))
     val flexiprep: Flexiprep = initPipeline(map)
 
@@ -63,7 +63,7 @@ class FlexiprepTest extends TestNGSuite with Matchers {
     flexiprep.functions.count(_.isInstanceOf[Gzip]) shouldBe 2
   }
 
-  @Test def TestClipTrimPaired = {
+  @Test def testClipTrimPaired = {
     val map = ConfigUtils.mergeMaps(Map("output_dir" -> FlexiprepTest.outputDir, "skip_trim" -> false, "skip_clip" -> false),
       Map(FlexiprepTest.excutables.toSeq: _*))
     val flexiprep: Flexiprep = initPipeline(map)
@@ -83,7 +83,7 @@ class FlexiprepTest extends TestNGSuite with Matchers {
     flexiprep.functions.count(_.isInstanceOf[Gzip]) shouldBe 2
   }
 
-  @Test def TestTrimPaired = {
+  @Test def testTrimPaired = {
     val map = ConfigUtils.mergeMaps(Map("output_dir" -> FlexiprepTest.outputDir, "skip_trim" -> false, "skip_clip" -> true),
       Map(FlexiprepTest.excutables.toSeq: _*))
     val flexiprep: Flexiprep = initPipeline(map)
@@ -103,7 +103,7 @@ class FlexiprepTest extends TestNGSuite with Matchers {
     flexiprep.functions.count(_.isInstanceOf[Gzip]) shouldBe 2
   }
 
-  @Test def TestClipPaired = {
+  @Test def testClipPaired = {
     val map = ConfigUtils.mergeMaps(Map("output_dir" -> FlexiprepTest.outputDir, "skip_trim" -> true, "skip_clip" -> false),
       Map(FlexiprepTest.excutables.toSeq: _*))
     val flexiprep: Flexiprep = initPipeline(map)
@@ -123,7 +123,7 @@ class FlexiprepTest extends TestNGSuite with Matchers {
     flexiprep.functions.count(_.isInstanceOf[Gzip]) shouldBe 2
   }
 
-  @Test def TestPaired = {
+  @Test def testPaired = {
     val map = ConfigUtils.mergeMaps(Map("output_dir" -> FlexiprepTest.outputDir, "skip_trim" -> true, "skip_clip" -> true),
       Map(FlexiprepTest.excutables.toSeq: _*))
     val flexiprep: Flexiprep = initPipeline(map)
-- 
GitLab