From 59b4c5ea4fc72d2e22d8ba0a7030ca431d0a7585 Mon Sep 17 00:00:00 2001 From: Katy Huff Date: Sat, 12 Jan 2013 18:25:10 -0600 Subject: [PATCH] first, not fist. --- python/testing/Readme.md | 2 +- python/testing/test_mean.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) + -- 2.26.2