Skip to content

Commit b8804cf

Browse files
committed
[no ci] formatting fixes
1 parent 8b91147 commit b8804cf

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

karate-core/src/test/java/com/intuit/karate/core/ignore-step-failure.feature

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ Background:
44
* configure continueOnStepFailure = true
55

66
Scenario: test
7-
* def var = 'foo'
7+
* def tmp = 'foo'
88
* configure continueOnStepFailure = true
9-
* match var == 'bar'
10-
* match var == 'pub'
11-
* match var == 'crawl'
12-
* match var == 'foo'
9+
* match tmp == 'bar'
10+
* match tmp == 'pub'
11+
* match tmp == 'crawl'
12+
* match tmp == 'foo'
1313
* configure continueOnStepFailure = false
14-
* match var == 'foo'
15-
* match var == 'bar2'
14+
* match tmp == 'foo'
15+
* match tmp == 'bar2'
1616

1717
Scenario Outline: hello <name>
1818
* print 'name:', name

karate-core/src/test/java/com/intuit/karate/core/perf.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Scenario:
99
* param foo = bar
1010
* method get
1111
* status 200
12-
* match response == { foo: [#(bar)] }
12+
* match response == { foo: ['#(bar)'] }
1313

1414
@name=failStatus
1515
Scenario:

karate-core/src/test/java/com/intuit/karate/report/test.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Scenario: second one
1515
* print 'in second one'
1616
# some comment
1717
* def bar = 'no log'
18-
* table data =
18+
* table data
1919
| foo | bar |
2020
| 1 | 2 |
2121
| 3 | 4 |

0 commit comments

Comments
 (0)