Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Egor Komarov committed Dec 2, 2024
1 parent ac2e6f2 commit ac0d5da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/integration_test/nekoton_webview_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ void main() {
final controller = await controllerCompleter.future;

expect(
await controller.evaluateJavascript(source: 'window.__ever'),
await controller.evaluateJavascript(source: 'window.__sparx'),
isNotNull,
);
});
Expand Down Expand Up @@ -71,7 +71,7 @@ void main() {
final controller = await controllerCompleter.future;

await controller.evaluateJavascript(
source: '''window.__ever.request({method: '$methodName'})''',
source: '''window.__sparx.request({method: '$methodName'})''',
);

expect(await methodCompleter.future, equals(methodName));
Expand Down

0 comments on commit ac0d5da

Please sign in to comment.