Skip to content

Commit

Permalink
Fix overwritten tests with duplicate function names (#3539)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Oct 7, 2023
1 parent c3183d6 commit 6f07624
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/test_complex.jl
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function test_complex_vector_constraint()
@test moi_set(con_obj) == MOI.Zeros(1)
end

function test_complex_vector_constraint()
function test_complex_vector_constraint_quadratic()
model = Model()
@variable(model, x)
con_ref = @constraint(model, [(1 + 2im) * x^2 + 1] in MOI.Zeros(1))
Expand Down
2 changes: 1 addition & 1 deletion test/test_nlp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1365,7 +1365,7 @@ function test_user_defined_function_checked_error_univariate_other_error()
return
end

function test_user_defined_function_checked_error_univariate()
function test_user_defined_function_checked_error_univariate_autodiff_fail()
f(x) = (x - 1)^2
function ∇f(x)
if x >= 1
Expand Down
2 changes: 1 addition & 1 deletion test/test_variable.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@ function test_complex_variable()
return
end

function test_complex_variable()
function test_complex_variable_vector_of_variables()
model = Model()
@variable(model, x[1:2] in ComplexPlane())
@test x[1] isa GenericAffExpr{ComplexF64,VariableRef}
Expand Down

0 comments on commit 6f07624

Please sign in to comment.