From f8c72e086eed8d8da1d246d809bb3218e6bf0aac Mon Sep 17 00:00:00 2001 From: danifgxcom Date: Sat, 4 May 2024 18:39:12 +0200 Subject: [PATCH] Correction in package migration for EnvironmentVariables The new packages are net.serenitybdd.model.environment.EnvironmentSpecificConfiguration net.thucydides.model.environment.SystemEnvironmentVariables net.thucydides.model.util.EnvironmentVariables Edited from my mobile. Please verify any typo, but documentation contains this minor typo. --- docs/tutorials/migrating_to_serenity_4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/migrating_to_serenity_4.md b/docs/tutorials/migrating_to_serenity_4.md index 97c6c388..940e4fb8 100644 --- a/docs/tutorials/migrating_to_serenity_4.md +++ b/docs/tutorials/migrating_to_serenity_4.md @@ -93,7 +93,7 @@ If you are using internal Serenity classes, you may need to modify the relevant | | net.thucydides.core.annotations.* | net.serenitybdd.annotations.* | | | Other net.thucydides.core.* | net.thucydides.model.* | -For example, you may need to replace `net.thucydides.core.util.EnvironmentVariables` with `net.thucydides.core.util.EnvironmentVariables` +For example, you may need to replace `net.thucydides.core.util.EnvironmentVariables` with `net.thucydides.model.util.EnvironmentVariables` ## Step 5: Test Your Changes