Skip to content

Commit

Permalink
Revert unintentional change from dart2wasm testing
Browse files Browse the repository at this point in the history
  • Loading branch information
simolus3 committed Jan 21, 2025
1 parent e380a06 commit f0d684d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sqlite_async/test/utils/web_test_utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class TestUtils extends AbstractTestUtils {

Future<void> _init() async {
final channel = spawnHybridUri('/test/server/worker_server.dart');
final port = (await channel.stream.first as num).toInt();
final port = await channel.stream.first as int;
final sqliteWasmUri = 'http://localhost:$port/sqlite3.wasm';
// Cross origin workers are not supported, but we can supply a Blob
var sqliteUri = 'http://localhost:$port/db_worker.js';
Expand Down

0 comments on commit f0d684d

Please sign in to comment.