diff --git a/lnst/Recipes/ENRT/BaseEnrtRecipe.py b/lnst/Recipes/ENRT/BaseEnrtRecipe.py index 77b3f7d0b..bcafe72ca 100644 --- a/lnst/Recipes/ENRT/BaseEnrtRecipe.py +++ b/lnst/Recipes/ENRT/BaseEnrtRecipe.py @@ -142,7 +142,7 @@ class BaseEnrtRecipe( :type perf_evaluation_strategy: :any:`StrParam` (default "all") """ - driver = StrParam(default="ixgbe") + driver = StrParam() #common test parameters ip_versions = Param(default=("ipv4", "ipv6")) diff --git a/lnst/Recipes/ENRT/PingFloodRecipe.py b/lnst/Recipes/ENRT/PingFloodRecipe.py index cbe1d2d33..11286ccec 100644 --- a/lnst/Recipes/ENRT/PingFloodRecipe.py +++ b/lnst/Recipes/ENRT/PingFloodRecipe.py @@ -4,7 +4,7 @@ from lnst.RecipeCommon.Ping.Recipe import PingConf, PingTestAndEvaluate class PingFloodRecipe(PingTestAndEvaluate): - driver = StrParam(default='ixgbe') + driver = StrParam() host1 = HostReq() host1.eth0 = DeviceReq(label="net1", driver=RecipeParam("driver"))