Skip to content

Commit

Permalink
Merge pull request #3 from ofirdagan/master
Browse files Browse the repository at this point in the history
feat(matchers): fix typo
  • Loading branch information
Tal Kol authored Aug 2, 2016
2 parents 3528bcc + 1adf035 commit f4ed2b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion detox/src/ios/expect.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class IdMatcher extends Matcher {
constructor(value) {
super();
if (typeof value !== 'string') throw new Error(`IdMatcher ctor argument must be a string, got ${typeof value}`);
this._call = invoke.call(invoke.IOS.Class('GREYMatchers'), 'matcherForAccessibilityId:', value);
this._call = invoke.call(invoke.IOS.Class('GREYMatchers'), 'matcherForAccessibilityID:', value);
}
}

Expand Down

0 comments on commit f4ed2b9

Please sign in to comment.