From 56f547f52e7a166527a83f0e096d089b6f178f9b Mon Sep 17 00:00:00 2001 From: Luke Diamand Date: Fri, 30 Dec 2016 18:43:29 +0000 Subject: [PATCH] Remove quotes around "test" The example for adding a test section uses quotes around the test target, "test". However, this doesn't work, as it's not a valid identifier and nimble fails with: Error: identifier expected, but found '`"test" Task`'. Remove the quotes in the example. --- readme.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.markdown b/readme.markdown index 29c989e..2c85498 100644 --- a/readme.markdown +++ b/readme.markdown @@ -464,7 +464,7 @@ To make testing even more convenient, you may wish to define a ``test`` task in your ``.nimble`` file. Like so: ```nim -task "test", "Runs the test suite": +task test, "Runs the test suite": exec "nim c -r tests/tester" ```