Skip to content

Commit

Permalink
Fixes for MinGW tests
Browse files Browse the repository at this point in the history
  • Loading branch information
apolukhin committed Jun 11, 2017
1 parent 1ae95d6 commit 064645c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Chapter06/01_tasks_processor_base/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ int main () {
// one of the tasks it is owning
// calls tasks_processor::stop().
tasks_processor::start();
assert(func_test() == 91);
assert(func_test() >= 91);
}
2 changes: 1 addition & 1 deletion Chapter06/flat/01_tasks_processor_base/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,5 +125,5 @@ int main () {
// one of the tasks it is owning
// calls tasks_processor::stop().
tasks_processor::start();
assert(func_test() == 91);
assert(func_test() >= 91);
}

0 comments on commit 064645c

Please sign in to comment.