Skip to content

Commit 15cc00f

Browse files
committed
simple change
1 parent ee126ef commit 15cc00f

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,13 @@ os:
55
julia:
66
- 1.6.1
77
- nightly
8-
98
matrix:
109
allow_failures:
1110
- julia: nightly
1211
- julia: 1.6.1
1312
fast_finish: true
1413
notifications:
1514
email: false
16-
1715
after_success:
1816
# push coverage results to Codecov
1917
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

test/runtests-utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ end
99
@testset "Test utils.jl - function `int2enum()`" begin
1010
@enum Fruit apple=10 orange=20 kiwi=30
1111
@test int2enum(Fruit, 20) == orange
12-
@test int2enum(Fruit, 10) == apple
12+
@test int2enum(Fruit, 30) == kiwi
1313
end
1414

1515

0 commit comments

Comments
 (0)