We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee126ef commit 15cc00fCopy full SHA for 15cc00f
2 files changed
.travis.yml
@@ -5,15 +5,13 @@ os:
5
julia:
6
- 1.6.1
7
- nightly
8
-
9
matrix:
10
allow_failures:
11
- julia: nightly
12
- julia: 1.6.1
13
fast_finish: true
14
notifications:
15
email: false
16
17
after_success:
18
# push coverage results to Codecov
19
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
test/runtests-utils.jl
@@ -9,7 +9,7 @@ end
@testset "Test utils.jl - function `int2enum()`" begin
@enum Fruit apple=10 orange=20 kiwi=30
@test int2enum(Fruit, 20) == orange
- @test int2enum(Fruit, 10) == apple
+ @test int2enum(Fruit, 30) == kiwi
end
0 commit comments