Skip to content

Commit

Permalink
Change TestCase property shoudFail to shouldFail
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagodp committed Jun 18, 2019
1 parent 517c40a commit 1131eae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/ast/TestCase.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export interface TestCase extends NamedNode, MayHaveTags {
* differently from its postconditions declare, making the test fail.
* So, since it is expected that the test will fail, it should pass.
*/
shoudFail?: boolean;
shouldFail?: boolean;
/**
* Indicates that it is a generated test case, i.e., not declared manually.
*
Expand Down
2 changes: 1 addition & 1 deletion src/ast/TestCase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface TestCase extends NamedNode, MayHaveTags {
* differently from its postconditions declare, making the test fail.
* So, since it is expected that the test will fail, it should pass.
*/
shoudFail?: boolean;
shouldFail?: boolean;

/**
* Indicates that it is a generated test case, i.e., not declared manually.
Expand Down

0 comments on commit 1131eae

Please sign in to comment.