Skip to content

Commit b51b29e

Browse files
committed
Working on DeepDive09
1 parent 1b23c24 commit b51b29e

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

0 Bytes
Binary file not shown.

TeachingKidsProgramming/src/org/teachingkidsprogramming/recipes/inDevelopment/DeepDive09exceptions.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ public class DeepDive09exceptions
1313
public void exceptionsShouldProvideInformation() throws Exception
1414
{
1515
Chain c = createChain();
16-
int answer = c.get("a").get("b").get("c").get("d").get("e").value; /* Fix This Line */
16+
String realAnswer = ___;
17+
int answer = c.get("a").get("b").get(realAnswer).get("d").get("e").value; /* Fix This Line */
1718
Assert.assertEquals(2048, answer);
1819
}
1920
@Test

0 commit comments

Comments
 (0)