Skip to content

Commit

Permalink
Fix warning tests based on other merged PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
bmomberger-bitovi committed Aug 31, 2017
1 parent 82e9f37 commit c3df182
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions define-test.js
Expand Up @@ -1426,7 +1426,9 @@ if(System.env.indexOf("production") < 0) {
define(VM.prototype, {
currency: {
type: Currency, // should be `Type: Currency`
value: new Currency({})
value: function() {
return new Currency({});
}
}
});

Expand All @@ -1439,7 +1441,9 @@ if(System.env.indexOf("production") < 0) {
define(VM2.prototype, {
currency: {
type: Currency, // should be `Type: Currency`
value: new Currency({})
value: function() {
return new Currency({});
}
}
});

Expand Down

0 comments on commit c3df182

Please sign in to comment.