From 8389c44d59da6b3531a9a55ed972e7c4f4eb7dc2 Mon Sep 17 00:00:00 2001 From: Lilith Hafner Date: Fri, 20 Oct 2023 11:05:58 -0500 Subject: [PATCH] fix tesy --- test/python/pythoncall.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/python/pythoncall.jl b/test/python/pythoncall.jl index f2e8ec427..8d4e71236 100644 --- a/test/python/pythoncall.jl +++ b/test/python/pythoncall.jl @@ -79,6 +79,6 @@ using DifferentialEquations, PythonCall end @testset "promotion" begin - _u0 = pyeval("""de.prepare_initial_state([1.0, 0, 0])""", @__MODULE__) + _u0 = pyeval("""de.SciMLBase.prepare_initial_state([1.0, 0, 0])""", @__MODULE__) @test _u0 isa Vector{Float64} end