From: Michael Jackson Date: Wed, 10 Apr 2013 15:39:55 +0000 (+0100) Subject: Fixed bug in test example X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0fe2fac27effb1addf5066d90cd42cc360b1aa9d;p=swc-testing-nose.git Fixed bug in test example --- diff --git a/testing/Writing.md b/testing/Writing.md index c62098e..59182dc 100755 --- a/testing/Writing.md +++ b/testing/Writing.md @@ -79,7 +79,7 @@ But this isn't very modular, and modularity is a good design principle, so let's def test_g(): assert calculate_weight('G') == NUCLEOTIDES['G'] def test_ga(): - assert calculate_weight('GA') == NUCLEOTIDES['GA'] + NUCLEOTIDES['A'] + assert calculate_weight('GA') == NUCLEOTIDES['G'] + NUCLEOTIDES['A'] test_a() test_g()