summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2010-02-20 08:57:39 +1100
committerRobert Collins <robertc@robertcollins.net>2010-02-20 08:57:39 +1100
commit7942543cbb28c0cf2831ad337e6d1e595660527a (patch)
tree04f2e9c488f03668990c91536952af1a682b3496
parentba08830969e954f16c89be8d5adb36525fdabdac (diff)
downloadsubunit-git-7942543cbb28c0cf2831ad337e6d1e595660527a.tar.gz
Apply trivial doc fix from Brad Hards for c/README.
-rw-r--r--NEWS6
-rw-r--r--c/README2
2 files changed, 7 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index fa8c24f..784379d 100644
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,12 @@ subunit release notes
NEXT (In development)
---------------------
+BUG FIXES
+~~~~~~~~~
+
+* Fix incorrect reference to subunit_test_failf in c/README.
+ (Brad Hards, #524341)
+
0.0.5
-----
diff --git a/c/README b/c/README
index d3b671d..b62fd45 100644
--- a/c/README
+++ b/c/README
@@ -47,7 +47,7 @@ a_test(void) {
if (!result) {
subunit_test_pass("test name");
} else {
- subunit_test_failf("test name",
+ subunit_test_fail("test name",
"Something went wrong running something:\n"
"exited with result: '%s'", result);
}