Skip to content

Commit

Permalink
fix: change verifyToken to verify
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyokone committed Oct 11, 2022
1 parent 01c5841 commit c489191
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ abstract class RecaptchaVerifierFactoryPlatform extends PlatformInterface {
}

/// Ensures that a delegate class extends [RecaptchaVerifierFactoryPlatform].
static void verify(RecaptchaVerifierFactoryPlatform instance) {
static void verifyExtends(RecaptchaVerifierFactoryPlatform instance) {
PlatformInterface.verify(instance, _token);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ void main() {
group('verify()', () {
test('calls successfully', () {
try {
RecaptchaVerifierFactoryPlatform.verify(
RecaptchaVerifierFactoryPlatform.verifyExtends(
recaptchaVerifierFactoryPlatform);
return;
} catch (_) {
Expand Down

0 comments on commit c489191

Please sign in to comment.