From 5e5c0eebe9612825c00ae238e7d45396e208599f Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Wed, 18 Oct 2017 12:41:35 +0200
Subject: [PATCH] fix on unit test to work on linux machine

---
 .../src/main/java/lcsb/mapviewer/run/PdMapAnnotations.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/console/src/main/java/lcsb/mapviewer/run/PdMapAnnotations.java b/console/src/main/java/lcsb/mapviewer/run/PdMapAnnotations.java
index 2ddc3a1ee4..3f159553cd 100644
--- a/console/src/main/java/lcsb/mapviewer/run/PdMapAnnotations.java
+++ b/console/src/main/java/lcsb/mapviewer/run/PdMapAnnotations.java
@@ -38,11 +38,11 @@ public final class PdMapAnnotations {
 	 * 
 	 * @return filename of the last available version of pd project
 	 * @throws FileNotFoundException
-	 *           thrown when file cannpt be found
+	 *           thrown when file cannot be found
 	 */
 	public static String getLastPdFilename() throws FileNotFoundException {
 		String result = null;
-		File folder = new File("testFiles/PD_full/");
+		File folder = new File("testFiles/pd_full/");
 		File[] listOfFiles = folder.listFiles();
 
 		for (int i = 0; i < listOfFiles.length; i++) {
-- 
GitLab