Skip to content

Commit a76a90a

Browse files
authored
synchonize cannonical data and unti test exercism#1806 (exercism#1829)
1 parent 8a04c86 commit a76a90a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exercises/bob/src/test/java/BobTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,23 +71,23 @@ public void askingGibberish() {
7171
public void talkingForcefully() {
7272
assertEquals(
7373
"Whatever.",
74-
bob.hey("Let's go make out behind the gym!")
74+
bob.hey("Hi there!")
7575
);
7676
}
7777

7878
@Ignore("Remove to run test")
7979
@Test
8080
public void usingAcronymsInRegularSpeech() {
8181
assertEquals(
82-
"Whatever.", bob.hey("It's OK if you don't want to go to the DMV.")
82+
"Whatever.", bob.hey("It's OK if you don't want to go work for NASA.")
8383
);
8484
}
8585

8686
@Ignore("Remove to run test")
8787
@Test
8888
public void forcefulQuestions() {
8989
assertEquals(
90-
"Calm down, I know what I'm doing!", bob.hey("WHAT THE HELL WERE YOU THINKING?")
90+
"Calm down, I know what I'm doing!", bob.hey("WHAT'S GOING ON?")
9191
);
9292
}
9393

@@ -127,7 +127,7 @@ public void shoutingWithSpecialCharacters() {
127127
@Test
128128
public void shoutingWithNoExclamationMark() {
129129
assertEquals(
130-
"Whoa, chill out!", bob.hey("I HATE THE DMV")
130+
"Whoa, chill out!", bob.hey("I HATE THE DENTIST")
131131
);
132132
}
133133

0 commit comments

Comments
 (0)