first, not fist.
authorKaty Huff <katyhuff@gmail.com>
Sun, 13 Jan 2013 00:25:10 +0000 (18:25 -0600)
committerW. Trevor King <wking@tremily.us>
Fri, 1 Nov 2013 04:00:37 +0000 (21:00 -0700)
python/testing/Readme.md
python/testing/test_mean.py

index 3dcf0928516e7fc16338d584ad42de7a0155ad39..3de364f20b5b656bddd4ff3d5fcf3d66ed8bb478 100644 (file)
@@ -347,7 +347,7 @@ list of strings?
 # Test Driven Development
 
 Test driven development (TDD) is a philosophy whereby the developer
-creates code by **writing the tests fist**. That is to say you write the
+creates code by **writing the tests first**. That is to say you write the
 tests *before* writing the associated code!
 
 This is an iterative process whereby you write a test then write the
index 69f4697a52a41cf4d1c39c072d2f05e906ceec95..05e26175c0243eb0777b3e815a185551b10c3295 100644 (file)
@@ -20,9 +20,9 @@ def test_mean1():
     exp = 0
     assert_equal(obs, exp)
 
-
 def test_floating_mean1():
     obs = mean([1, 2])
     exp = 1.5
     assert_equal(obs, exp)
 
+