From 9c3a9d651d97f9719ba4f4fcb7c1a034ecb38767 Mon Sep 17 00:00:00 2001 From: Mike Jackson Date: Tue, 16 Apr 2013 09:02:36 -0700 Subject: [PATCH] Changed assert_true example --- testing/Writing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/Writing.md b/testing/Writing.md index 4ac4900..0fb674e 100755 --- a/testing/Writing.md +++ b/testing/Writing.md @@ -156,7 +156,7 @@ This is a standard format that that is supported by a number of xUnit frameworks We can add more information to the failure messages by providing additional string arguments e.g. - >>> assert_false(expected in actual, "Expected value was not in the output list") + >>> assert_true("GTA" in actual, "Expected value was not in the output list") ## Write some more tests -- 2.26.2