From: Katy Huff Date: Sun, 13 Jan 2013 00:25:10 +0000 (-0600) Subject: first, not fist. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=59b4c5ea4fc72d2e22d8ba0a7030ca431d0a7585;p=swc-testing-nose.git first, not fist. --- diff --git a/python/testing/Readme.md b/python/testing/Readme.md index 3dcf092..3de364f 100644 --- a/python/testing/Readme.md +++ b/python/testing/Readme.md @@ -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 diff --git a/python/testing/test_mean.py b/python/testing/test_mean.py index 69f4697..05e2617 100644 --- a/python/testing/test_mean.py +++ b/python/testing/test_mean.py @@ -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) +