Skip to content

Commit 4255c58

Browse files
Updated value to match v8.0 book
1 parent d6e2f4d commit 4255c58

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Chapter04.Tests/Listing04.02.Negative.Tests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class ProgramTests
88
[TestMethod]
99
public void MainTest()
1010
{
11-
const string expected = @"-18125876697430.99";
11+
const string expected = @"-26457079712930.80";
1212

1313
IntelliTect.TestTools.Console.ConsoleAssert.Expect(
1414
expected, Program.Main);

src/Chapter04/Listing04.02.Negative.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public class Program
55
public static void Main()
66
{
77
//National Debt to the Penny
8-
decimal debt = -28382607800141.79M;
8+
decimal debt = -26457079712930.80M;
99

1010
System.Console.WriteLine(debt);
1111
}

0 commit comments

Comments
 (0)