Skip to content

Commit

Permalink
Merge pull request #161 from jump-dev/rb/new_error_test
Browse files Browse the repository at this point in the history
Change Xpress Error Test
  • Loading branch information
joaquimg authored Mar 16, 2022
2 parents 9790646 + 926a258 commit 32412e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = "Xpress"
uuid = "9e70acf3-d6c9-5be6-b5bd-4e2c73e3e054"
authors = ["Joaquim Dias Garcia <[email protected]>, Dheepak Krishnamurthy <[email protected]>, Jose Daniel Lara <[email protected]>"]
url = "https://github.com/jump-dev/Xpress.jl"
version = "0.15.0"
version = "0.15.1"

[deps]
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
Expand Down
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ end

@test Xpress.getcontrol(prob, "HEURTHREADS") == 0

msg = "Unable to call `Xpress.copyprob`:\n\n91 Error: No problem has been input.\n"
@test_throws Xpress.XpressError(32, msg) Xpress.copyprob(prob, prob)
msg = "Unable to call `Xpress.readprob`:\n\n85 Error: File not found: .mps.\n"
@test_throws Xpress.XpressError(32, msg) Xpress.readprob(prob,"","")
end

2 comments on commit 32412e6

@joaquimg
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/56689

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.15.1 -m "<description of version>" 32412e6e4e974323dad6614699edba42ebd61d12
git push origin v0.15.1

Please sign in to comment.