Skip to content

Commit 8ff7f7c

Browse files
committed
Update BobTest.java
Woah -> Whoa
1 parent 97a04b9 commit 8ff7f7c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

bob/src/test/java/BobTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public void saySomething() {
1616
@Test
1717
public void shouting() {
1818
assertEquals(
19-
"Woah, chill out!",
19+
"Whoa, chill out!",
2020
bob.hey("WATCH OUT!")
2121
);
2222
}
@@ -55,14 +55,14 @@ public void usingAcronymsInRegularSpeech() {
5555
@Test
5656
public void forcefulQuestions() {
5757
assertEquals(
58-
"Woah, chill out!", bob.hey("WHAT THE HELL WERE YOU THINKING?")
58+
"Whoa, chill out!", bob.hey("WHAT THE HELL WERE YOU THINKING?")
5959
);
6060
}
6161

6262
@Test
6363
public void shoutingNumbers() {
6464
assertEquals(
65-
"Woah, chill out!", bob.hey("1, 2, 3 GO!")
65+
"Whoa, chill out!", bob.hey("1, 2, 3 GO!")
6666
);
6767
}
6868

@@ -83,14 +83,14 @@ public void questionWithOnlyNumbers() {
8383
@Test
8484
public void shoutingWithSpecialCharacters() {
8585
assertEquals(
86-
"Woah, chill out!", bob.hey("ZOMG THE %^*@#$(*^ ZOMBIES ARE COMING!!11!!1!")
86+
"Whoa, chill out!", bob.hey("ZOMG THE %^*@#$(*^ ZOMBIES ARE COMING!!11!!1!")
8787
);
8888
}
8989

9090
@Test
9191
public void shoutingWithUmlauts() {
9292
assertEquals(
93-
"Woah, chill out!", bob.hey("\u00dcML\u00c4\u00dcTS!")
93+
"Whoa, chill out!", bob.hey("\u00dcML\u00c4\u00dcTS!")
9494
);
9595
}
9696

@@ -104,7 +104,7 @@ public void calmlySpeakingWithUmlauts() {
104104
@Test
105105
public void shoutingWithNoExclamationMark() {
106106
assertEquals(
107-
"Woah, chill out!", bob.hey("I HATE YOU")
107+
"Whoa, chill out!", bob.hey("I HATE YOU")
108108
);
109109
}
110110

0 commit comments

Comments
 (0)