From 7de45b3a7594550d2c2c85703644299d70a3788a Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Fri, 5 Sep 2025 09:21:04 +0200 Subject: [PATCH] misc: tests: drop `extern crate`, use modern rust This commit is part of a series of similar commits. Signed-off-by: Philipp Schuster On-behalf-of: SAP philipp.schuster@sap.com --- tests/integration.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/integration.rs b/tests/integration.rs index 4ef1029b7..468ab36b7 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -9,8 +9,6 @@ // related warnings for our quality workflow to pass. #![allow(dead_code)] -extern crate test_infra; - use std::collections::HashMap; use std::ffi::CStr; use std::fs::OpenOptions;