Skip to content

Commit 90cde40

Browse files
committed
fixed DeepDive06 bug
1 parent b84a1d8 commit 90cde40

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

0 Bytes
Binary file not shown.

TeachingKidsProgramming/src/org/teachingkidsprogramming/section04mastery/DeepDive04Mastery.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public void dividing() throws Exception
113113
{
114114
Number number = 1.0 / 5;
115115
Assert.assertEquals(number.getClass(), ______.class);
116-
Assert.assertEquals(number, .2);
116+
Assert.assertEquals(number, ___);
117117
}
118118
@Test
119119
public void dividingIntegers() throws Exception
@@ -155,6 +155,7 @@ public void understandingDoubleNumbers() throws Exception
155155
public boolean ______ = true;
156156
public String ___ = "You need to fill in the blank ___";
157157
public Integer ____ = null;
158+
private Double _______;
158159
public String ___()
159160
{
160161
return ___;

0 commit comments

Comments
 (0)