diff --git a/src/test/java/tech/bitgoblin/config/CmdTest.java b/src/test/java/tech/bitgoblin/config/CmdTest.java index fee6a6a..9e5b005 100644 --- a/src/test/java/tech/bitgoblin/config/CmdTest.java +++ b/src/test/java/tech/bitgoblin/config/CmdTest.java @@ -9,9 +9,9 @@ import org.apache.commons.cli.ParseException; public class CmdTest { @Test - public void shouldDefaultToEtc() throws ParseException { + public void shouldDefaultToHome() throws ParseException { Cmd cmd = new Cmd(new String[]{}); - assertTrue(cmd.getConfigPath().equals("/etc/dragoon/config.toml")); + assertTrue(cmd.getConfigPath().equals("~/.config/dragoon.toml")); } }