File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/main/java/cucumber/runtime/jruby Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 10
10
import cucumber .runtime .UnreportedStepExecutor ;
11
11
import cucumber .runtime .io .Resource ;
12
12
import cucumber .runtime .io .ResourceLoader ;
13
+ import cucumber .runtime .snippets .FunctionNameSanitizer ;
13
14
import cucumber .runtime .snippets .SnippetGenerator ;
14
15
import gherkin .I18n ;
15
16
import gherkin .formatter .model .DataTableRow ;
@@ -115,8 +116,8 @@ public void disposeWorld() {
115
116
}
116
117
117
118
@ Override
118
- public String getSnippet (Step step ) {
119
- return snippetGenerator .getSnippet (step );
119
+ public String getSnippet (Step step , FunctionNameSanitizer functionNameSanitizer ) {
120
+ return snippetGenerator .getSnippet (step , functionNameSanitizer );
120
121
}
121
122
122
123
public void registerStepdef (RubyObject stepdefRunner ) {
You can’t perform that action at this time.
0 commit comments