From f6d5d7b1594c6441b4505a925caecca560c49d5c Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Sat, 18 Jan 2025 21:44:44 -0800 Subject: [PATCH] fix fuzzing example (#1184) --- docs/build/guides/testing/fuzzing.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/guides/testing/fuzzing.mdx b/docs/build/guides/testing/fuzzing.mdx index 396422b82..de2014622 100644 --- a/docs/build/guides/testing/fuzzing.mdx +++ b/docs/build/guides/testing/fuzzing.mdx @@ -59,7 +59,7 @@ The following steps can be used in any Stellar contract workspace. If experiment use libfuzzer_sys::fuzz_target; use soroban_increment_with_fuzz_contract::{IncrementContract, IncrementContractClient}; use soroban_sdk::{ - testutils::arbitrary::{self, Arbitrary}, + testutils::arbitrary::{arbitrary, Arbitrary}, Env, };