From 5d5529a8d57386dc5f7fd521147d9cdd0c67b0ff Mon Sep 17 00:00:00 2001 From: Klemens David Morgenstern Date: Wed, 30 Jan 2019 15:49:10 +0800 Subject: [PATCH] broke bandit --- test/bandit.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/bandit.cpp b/test/bandit.cpp index 3957399..350c14e 100644 --- a/test/bandit.cpp +++ b/test/bandit.cpp @@ -6,7 +6,7 @@ using namespace bandit; go_bandit([]() { describe("our first test", []() { it("might fail", [&]() { - AssertThat(5, Equals(5)); + AssertThat(6, Equals(5)); }); }); }); @@ -18,7 +18,7 @@ go_bandit([]() { const auto add = [](int i, int j) { return i + j; }; - const auto subtract = [](int i, int j) { return i - j; }; + const auto subtract = [](int i, int j) { return i + j; }; it("can add", [&]()