Skip to content

Commit

Permalink
Update expected sqlite3 wasm version
Browse files Browse the repository at this point in the history
  • Loading branch information
simolus3 committed Jun 15, 2024
1 parent 89df480 commit db5077b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ jobs:

- name: Web tests
run: |
curl https://storage.googleapis.com/simon-public-euw3/assets/sqlite3/wasm/2.3.0/sqlite3.wasm -o example/web/sqlite3.wasm
curl https://storage.googleapis.com/simon-public-euw3/assets/sqlite3/wasm/2.4.3/sqlite3.wasm -o example/web/sqlite3.wasm
dart test -P web -r expanded
# If browsers behave differently on different platforms, surely that's not our fault...
# So, only run browser tests on Linux to be faster.
Expand Down
2 changes: 1 addition & 1 deletion sqlite3/test/wasm/sqlite3_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ void main() {
expect(
version,
isA<Version>()
.having((e) => e.libVersion, 'libVersion', startsWith('3.45')),
.having((e) => e.libVersion, 'libVersion', startsWith('3.46')),
);
});

Expand Down

0 comments on commit db5077b

Please sign in to comment.