File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -64,15 +64,15 @@ def generate_gherkin(srt_actions):
64
64
)
65
65
elif '"' not in action [1 ] and '"' in text :
66
66
sb_actions .append (
67
- 'Into "%s" type \' %s\' ) ' % (action [1 ], text )
67
+ 'Into "%s" type \' %s\' ' % (action [1 ], text )
68
68
)
69
69
elif '"' in action [1 ] and '"' not in text :
70
70
sb_actions .append (
71
- 'Into \' %s\' type "%s") ' % (action [1 ], text )
71
+ 'Into \' %s\' type "%s"' % (action [1 ], text )
72
72
)
73
73
elif '"' in action [1 ] and '"' in text :
74
74
sb_actions .append (
75
- "Into '%s' type '%s') " % (action [1 ], text )
75
+ "Into '%s' type '%s'" % (action [1 ], text )
76
76
)
77
77
elif action [0 ] == "e_mfa" :
78
78
text = action [2 ].replace ("\n " , "\\ n" )
@@ -258,7 +258,7 @@ def generate_gherkin(srt_actions):
258
258
sb_actions .append ('%s "%s" to downloads' % (method , file_url ))
259
259
else :
260
260
sb_actions .append (
261
- '%s "%s" to "%s") ' % (method , file_url , dest )
261
+ '%s "%s" to "%s"' % (method , file_url , dest )
262
262
)
263
263
elif action [0 ] == "as_at" :
264
264
if ('"' not in action [1 ][0 ]) and action [1 ][2 ]:
You can’t perform that action at this time.
0 commit comments