File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -990,7 +990,7 @@ def test_write_basis_before_running(self):
990990 with tempfile .NamedTemporaryFile () as f :
991991 h .writeBasis (f .name )
992992 contents = f .read ()
993- self .assertEqual (contents , b"HiGHS v2\n None\n " )
993+ self .assertEqual (contents , b"HiGHS_basis_file v2\n None\n " )
994994
995995 def test_write_basis_after_running (self ):
996996 if platform == "linux" or platform == "darwin" :
@@ -999,7 +999,7 @@ def test_write_basis_after_running(self):
999999 with tempfile .NamedTemporaryFile () as f :
10001000 h .writeBasis (f .name )
10011001 contents = f .read ()
1002- self .assertEqual (contents , b"HiGHS v2\n Valid\n # Columns 2\n 1 1 \n # Rows 2\n 0 0 \n " )
1002+ self .assertEqual (contents , b"HiGHS_basis_file v2\n Valid\n # Columns 2\n c0 1 \n c1 1 \n # Rows 2\n r0 0 \n r1 0 \n " )
10031003
10041004 def test_read_basis (self ):
10051005 if platform == "linux" or platform == "darwin" :
You can’t perform that action at this time.
0 commit comments