Skip to content

Commit ba35327

Browse files
committed
remove identity method test
1 parent c55454d commit ba35327

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/Evolutionary.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module Evolutionary
66
using NLSolversBase: NLSolversBase, AbstractObjective, ConstraintBounds,
77
AbstractConstraints, nconstraints_x, nconstraints
88
import NLSolversBase: f_calls, value, value!, value!!
9-
import Base: show, copy, minimum, summary, identity, getproperty, rand, getindex, length, copyto!, setindex!, replace
9+
import Base: show, copy, minimum, summary, getproperty, rand, getindex, length, copyto!, setindex!, replace
1010

1111
export AbstractStrategy, strategy, mutationwrapper,
1212
IsotropicStrategy, AnisotropicStrategy, NoStrategy,

test/recombinations.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
@testset "GA" begin
1919

20-
@test identity(pop[1], pop[2]) == (pop[1], pop[2])
2120
Random.seed!(rng, 4)
2221
@test SPX([0:4;], [5:9;], rng=rng) == ([0, 1, 7, 8, 9], [5, 6, 2, 3, 4])
2322
Random.seed!(rng, 1)

0 commit comments

Comments
 (0)