Skip to content

Commit

Permalink
Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Dec 21, 2023
1 parent 61861a5 commit 226962f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/test/resources/feature/simple.feature
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ Feature: the very basic test to run by Karate

Scenario: Verify math
Given def four = 4
When def acualFour = 2 * 2
Then assert acualFour == four
When def actualFour = 2 * 2
Then assert actualFour == four
4 changes: 2 additions & 2 deletions src/test/resources/feature/tags.feature
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ Feature: the very basic to test different tags
@math @scope=smoke @environment=dev,qa
Scenario: Verify math
Given def four = 4
When def acualFour = 2 * 2
Then assert acualFour == four
When def actualFour = 2 * 2
Then assert actualFour == four

0 comments on commit 226962f

Please sign in to comment.