From e44178238ab8b74991626b35d09f6d1fc109ea70 Mon Sep 17 00:00:00 2001 From: Raffael Rott Date: Tue, 5 May 2026 15:49:56 +0200 Subject: [PATCH] fixed ecuemulator container tag --- tests/emulator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/emulator.rs b/tests/emulator.rs index c223939..334829b 100644 --- a/tests/emulator.rs +++ b/tests/emulator.rs @@ -214,7 +214,7 @@ device_name = "Emulator1" fn start_ecuemulator_container_with_config( config_toml: &str, ) -> testcontainers::Container { - let container = GenericImage::new("tuwienspaceteam/ecuemulator", "feat-docker-integration") + let container = GenericImage::new("tuwienspaceteam/ecuemulator", "latest") .with_network("host") .with_env_var("CONFIG_PATH", "/config/config.toml") .with_copy_to("/config/config.toml", config_toml.as_bytes().to_vec())