From 99d1e777230d0616f3d9f70d6e263ea4e7058178 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Tue, 4 Aug 2009 19:22:05 -0700 Subject: [PATCH] 1.5 --> 1.0 for initial NotIntegerError example --- unit-testing.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unit-testing.html b/unit-testing.html index c9cbd84..3198cfc 100755 --- a/unit-testing.html +++ b/unit-testing.html @@ -461,7 +461,7 @@ OK >>> import roman3 >>> roman3.to_roman(0.5) '' ->>> roman3.to_roman(1.5) +>>> roman3.to_roman(1.0) 'I'
  1. Oh, that’s bad.