Skip to content

Commit

Permalink
symbol->Symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
abelsiqueira committed Oct 30, 2016
1 parent 638f6bc commit 4937c2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_select.jl
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ facts("CUTEst selection tool") do
end
selection_alt = CUTEst.select(objtype=CUTEst.objtypes[i])
@fact sort(selection_alt) --> sort(selection)
selection_alt = CUTEst.select(objtype=symbol(CUTEst.objtypes[i]))
selection_alt = CUTEst.select(objtype=Symbol(CUTEst.objtypes[i]))
@fact sort(selection_alt) --> sort(selection)
end
@fact npi --> np
Expand Down Expand Up @@ -105,7 +105,7 @@ facts("CUTEst selection tool") do
end
selection_alt = CUTEst.select(contype=CUTEst.contypes[i])
@fact sort(selection_alt) --> sort(selection)
selection_alt = CUTEst.select(contype=symbol(CUTEst.contypes[i]))
selection_alt = CUTEst.select(contype=Symbol(CUTEst.contypes[i]))
@fact sort(selection_alt) --> sort(selection)
end
@fact npi --> np
Expand Down

0 comments on commit 4937c2d

Please sign in to comment.