Skip to content

Commit

Permalink
fixed error in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
robertfeldt committed Aug 23, 2016
1 parent 92cc0d8 commit f0389b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_toplevel_bboptimize.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ facts("Top-level interface") do

# Access a few individual solution vectors in the population...
@fact isa(xpop[1], Array{Float64, 1}) --> true # first solution vector
@fact isa(xpop[popsize(xpop)], Array{Float64, 1}) --> true # first solution vector
@fact isa(xpop[popsize(xpop)], Array{Float64, 1}) --> true # last solution vector
rand_solution_idx = rand(1:popsize(xpop))
@fact isa(xpop[rand_solution_idx], Array{Float64, 1}) --> true # random solution vector

Expand Down

0 comments on commit f0389b7

Please sign in to comment.