Skip to content

Commit

Permalink
Merge pull request #174 from JuliaImages/teh/ct010
Browse files Browse the repository at this point in the history
Fix tests with ColorTypes 0.10
  • Loading branch information
timholy authored Jun 16, 2020
2 parents ee2d75f + 82d9f9f commit 9517a2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ImageFiltering"
uuid = "6a3955dd-da59-5b1f-98d4-e7296123deb5"
author = ["Tim Holy <[email protected]>", "Jan Weidner <[email protected]>"]
version = "0.6.11"
version = "0.6.12"

[deps]
CatIndices = "aafaddc9-749c-510e-ac4f-586e18779b91"
Expand Down
2 changes: 1 addition & 1 deletion test/border.jl
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ using Test
B[1,1] = 0
@test B != A
A = rand(RGB{N0f8}, 3, 5)
ret = @test_throws ArgumentError padarray(A, Fill(0, (0,0), (0,0)))
ret = @test_throws ArgumentError padarray(A, Fill(7, (0,0), (0,0)))
@test occursin("RGB", ret.value.msg)
@test occursin("convert", ret.value.msg)
A = bitrand(3, 5)
Expand Down

2 comments on commit 9517a2f

@timholy
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/16458

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.6.12 -m "<description of version>" 9517a2fb7bebdd63d18626aead41282dcfdb50e7
git push origin v0.6.12

Please sign in to comment.