Skip to content

Commit 0310484

Browse files
committed
fix
1 parent b803a85 commit 0310484

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ git:
1414

1515
## uncomment the following lines to allow failures on nightly julia
1616
## (tests will run but not make your overall status red)
17-
matrix:
18-
allow_failures:
19-
- julia: nightly
17+
# matrix:
18+
# allow_failures:
19+
# - julia: nightly
2020

2121
## uncomment and modify the following lines to manually install system packages
2222
#addons:

src/metagraph.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,11 @@ false
180180
julia> has_vertex(colors, 1)
181181
true
182182
183-
julia> LightGraphs.SimpleGraphs.fadj(colors, 1)
184-
0-element Array{Int64,1}
183+
julia> LightGraphs.SimpleGraphs.fadj(colors, 1) == Int[]
184+
true
185185
186-
julia> LightGraphs.SimpleGraphs.badj(colors, 1)
187-
0-element Array{Int64,1}
186+
julia> LightGraphs.SimpleGraphs.badj(colors, 1) == Int[]
187+
true
188188
189189
julia> colors == colors
190190
true

0 commit comments

Comments
 (0)