@@ -20,7 +20,7 @@ public static Story BDDfy(
2020 string caller = null )
2121 {
2222 var callerName = testObject . GetActualCallerName ( caller ) ;
23- return InternalLazyBDDfy ( testObject , scenarioTitle ?? Configurator . Humanize ( callerName ) ) . Run ( ) ;
23+ return InternalLazyBDDfy ( testObject , scenarioTitle ?? Configurator . Humanizer . Humanize ( callerName ) ) . Run ( ) ;
2424 }
2525
2626 public static Engine LazyBDDfy (
@@ -30,7 +30,7 @@ public static Engine LazyBDDfy(
3030 string caller = null )
3131 {
3232 var callerName = testObject . GetActualCallerName ( caller ) ;
33- return InternalLazyBDDfy ( testObject , scenarioTitle ?? Configurator . Humanize ( callerName ) ) ;
33+ return InternalLazyBDDfy ( testObject , scenarioTitle ?? Configurator . Humanizer . Humanize ( callerName ) ) ;
3434 }
3535
3636 /// <summary>
@@ -49,7 +49,7 @@ public static Story BDDfy<TStory>(
4949 where TStory : class
5050 {
5151 var callerName = testObject . GetActualCallerName ( caller ) ;
52- return InternalLazyBDDfy ( testObject , scenarioTitle ?? Configurator . Humanize ( callerName ) , typeof ( TStory ) ) . Run ( ) ;
52+ return InternalLazyBDDfy ( testObject , scenarioTitle ?? Configurator . Humanizer . Humanize ( callerName ) , typeof ( TStory ) ) . Run ( ) ;
5353 }
5454
5555 public static Engine LazyBDDfy < TStory > (
@@ -60,7 +60,7 @@ public static Engine LazyBDDfy<TStory>(
6060 where TStory : class
6161 {
6262 var callerName = testObject . GetActualCallerName ( caller ) ;
63- return InternalLazyBDDfy ( testObject , scenarioTitle ?? Configurator . Humanize ( callerName ) , typeof ( TStory ) ) ;
63+ return InternalLazyBDDfy ( testObject , scenarioTitle ?? Configurator . Humanizer . Humanize ( callerName ) , typeof ( TStory ) ) ;
6464 }
6565
6666 static Engine InternalLazyBDDfy (
0 commit comments