Skip to content

Commit

Permalink
Tweak to windows test
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromekelleher committed Oct 13, 2021
1 parent 14042d1 commit 079f650
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c/tests/test_minimal_cpp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ safe_sort_edges(tsk_table_sorter_t *sorter, tsk_size_t start)
try {
ret = sort_edges_raises_non_exception(sorter, start);
} catch (...) {
ret = -123456;
ret = -12346;
}
}
return ret;
Expand Down Expand Up @@ -246,7 +246,7 @@ test_edge_sorting_errors()
* of exception that get thrown. */
sorter.user_data = &tables;
ret = tsk_table_sorter_run(&sorter, NULL);
assert(ret == -123456);
assert(ret == -12346);

tsk_table_sorter_free(&sorter);
tsk_table_collection_free(&tables);
Expand Down

0 comments on commit 079f650

Please sign in to comment.