From d8907918008489c6a205aa7854ea5bee372d9e1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Sun, 12 Feb 2017 15:48:32 +0100 Subject: [PATCH] Fixed editing mishap in documentation. --- docs/slow-compiles.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/slow-compiles.md b/docs/slow-compiles.md index 1217f9f8..c044830c 100644 --- a/docs/slow-compiles.md +++ b/docs/slow-compiles.md @@ -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.