Skip to content

Commit 4a2849a

Browse files
committed
Silenced write-MI-bound-model unit test and removed temp.mps
1 parent f5cc7bb commit 4a2849a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

check/TestFilereader.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ TEST_CASE("writeLocalModel", "[highs_filereader]") {
420420
TEST_CASE("write-MI-bound-model", "[highs_filereader]") {
421421
std::string write_model_file = "temp.mps";
422422
Highs h;
423-
// h.setOptionValue("output_flag", dev_run);
423+
h.setOptionValue("output_flag", dev_run);
424424
h.addCol(1, -kHighsInf, 1, 0, nullptr, nullptr);
425425
h.changeColIntegrality(0, HighsVarType::kInteger);
426426
h.passColName(0, "x");
@@ -437,5 +437,5 @@ TEST_CASE("write-MI-bound-model", "[highs_filereader]") {
437437
h.readModel(write_model_file);
438438
h.run();
439439
REQUIRE(required_objective_value == h.getInfo().objective_function_value);
440-
// std::remove(write_model_file.c_str());
440+
std::remove(write_model_file.c_str());
441441
}

0 commit comments

Comments
 (0)