Fixed editing mishap in documentation.

This commit is contained in:
Martin Hořeňovský 2017-02-12 15:48:32 +01:00
parent 26f6012bb9
commit d890791800
1 changed files with 0 additions and 1 deletions

View File

@ -51,7 +51,6 @@ Passed 1 test case with 4 assertions.
Now, the next time we change the file `tests-factorial.cpp` (say we add `REQUIRE( Factorial(0) == 1)`), it is enough to recompile the tests instead of recompiling main as well:
```
$ g++ tests-main.o tests-factorial.cpp -o tests
$ g++ tests-main.o tests-factorial.cpp -o tests && ./tests -r compact
tests-factorial.cpp:11: failed: Factorial(0) == 1 for: 0 == 1
Failed 1 test case, failed 1 assertion.