From: Ben Soares Date: Tue, 12 Sep 2023 10:17:16 +0000 (+0100) Subject: JAL-4277 No longer using getCanonicalPath() for parent dir -- fix test X-Git-Tag: Release_2_11_3_0~8^2~5^2~26 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=30204a50a9d41ee87f087457cfb5841ccd09b835;hp=fd86db8856109e69c21a5f4102bc8dd94664ae1f;p=jalview.git JAL-4277 No longer using getCanonicalPath() for parent dir -- fix test --- diff --git a/test/jalview/util/FileUtilsTest.java b/test/jalview/util/FileUtilsTest.java index 1597718..666b33b 100644 --- a/test/jalview/util/FileUtilsTest.java +++ b/test/jalview/util/FileUtilsTest.java @@ -21,7 +21,6 @@ package jalview.util; import java.io.File; -import java.io.IOException; import java.util.List; import org.testng.Assert; @@ -98,16 +97,7 @@ public class FileUtilsTest @DataProvider(name = "dirnamesAndBasenames") public Object[][] dirnamesAndBasenames() { - String homeDir = null; - try - { - homeDir = new File(System.getProperty("user.home")) - .getCanonicalPath(); - } catch (IOException e) - { - System.err.println("Problem getting canonical home dir"); - e.printStackTrace(); - } + String homeDir = new File(System.getProperty("user.home")).getPath(); return new Object[][] { // -1=startsWith, 0=equals, 1=endsWith { "~/hello/sailor", homeDir, "/hello", "sailor", "~" }, // { "./examples/uniref50.fa", "./", "examples", "uniref50", "Users" }, //