Skip to content

Commit 8c72920

Browse files
committed
Fix hyphen
1 parent e2222f9 commit 8c72920

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/scenarios/fixtures.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ fn valid_appkey(world: &mut DatadogWorld) {
300300
fn instance_of_api(world: &mut DatadogWorld, api: String) {
301301
let api_name = api.clone().replace("-", "");
302302
initialize_api_instance(world, api_name);
303-
world.api_name = Some(api);
303+
world.api_name = Some(api_name);
304304
}
305305

306306
pub fn given_resource_in_system(

0 commit comments

Comments
 (0)