Skip to content

Commit

Permalink
hotfix: solve get_version expected value
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelm41 committed Nov 15, 2024
1 parent 18d3fe2 commit bc24550
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests_zemu/tests/basic.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ describe('Basic', function () {
console.log(resp)

expect(resp.testMode).toBe(false)
expect(resp.major).toBe(0)
expect(resp.minor).toBe(6)
expect(resp.major).toBe(1)
expect(resp.minor).toBe(0)
expect(resp.patch).toBe(0)
} finally {
await sim.close()
Expand Down

0 comments on commit bc24550

Please sign in to comment.