From c7b8ef7a182fd94db0a76eed31ab9873a1626854 Mon Sep 17 00:00:00 2001 From: Alexey Metlyakov Date: Sun, 14 Mar 2021 16:47:29 +0300 Subject: [PATCH] fix all --- pom.xml | 2 +- src/main/java/hello/HelloPlayer.java | 2 +- src/main/java/hello/Welcomer.java | 4 ++-- src/test/java/hello/WelcomerTest.java | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index acf28c0..6ce4d32 100644 --- a/pom.xml +++ b/pom.xml @@ -46,7 +46,7 @@ - hello.HelloWorld + plaindoll.HelloPlayer diff --git a/src/main/java/hello/HelloPlayer.java b/src/main/java/hello/HelloPlayer.java index ca9e6b0..3369176 100644 --- a/src/main/java/hello/HelloPlayer.java +++ b/src/main/java/hello/HelloPlayer.java @@ -1,4 +1,4 @@ -package hello; +package plaindoll; import org.joda.time.LocalTime; diff --git a/src/main/java/hello/Welcomer.java b/src/main/java/hello/Welcomer.java index 24f1e07..d876fd1 100644 --- a/src/main/java/hello/Welcomer.java +++ b/src/main/java/hello/Welcomer.java @@ -1,7 +1,7 @@ -package hello; +package plaindoll; public class Welcomer{ public String sayWelcome() { - return "Welcome back, Good Hunter!"; + return "Welcome home, good hunter. What is it your desire?"; } } diff --git a/src/test/java/hello/WelcomerTest.java b/src/test/java/hello/WelcomerTest.java index f9ebb3b..cb8f596 100644 --- a/src/test/java/hello/WelcomerTest.java +++ b/src/test/java/hello/WelcomerTest.java @@ -1,4 +1,4 @@ -package hello; +package plaindoll; import static org.hamcrest.CoreMatchers.containsString; import static org.junit.Assert.*;