Skip to content

Commit

Permalink
Fix build error from rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
eliperelman committed Oct 18, 2019
1 parent a4678bc commit 9f7892d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const mockRouteContext = ({
licensing: {
license: {
check: jest.fn().mockReturnValue({
check: LICENSE_CHECK_STATE.Valid,
state: LICENSE_CHECK_STATE.Valid,
}),
},
},
Expand All @@ -21,7 +21,7 @@ export const mockRouteContextWithInvalidLicense = ({
licensing: {
license: {
check: jest.fn().mockReturnValue({
check: LICENSE_CHECK_STATE.Invalid,
state: LICENSE_CHECK_STATE.Invalid,
message: 'License is invalid for spaces',
}),
},
Expand Down

0 comments on commit 9f7892d

Please sign in to comment.