Skip to content

Commit

Permalink
tests: explicitly require libsoup 2.x
Browse files Browse the repository at this point in the history
As if libsoup3 is installed together with libsoup2, libsoup3 is selected
which makes test fails.

Signed-off-by: Mateusz Gozdek <mgozdekof@gmail.com>
  • Loading branch information
invidian committed May 20, 2022
1 parent 3051382 commit 6585ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/object__initialization.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

const gi = require('../lib/')
const Gtk = gi.require('Gtk', '3.0')
const Soup = gi.require('Soup')
const Soup = gi.require('Soup', '2.4')
const { describe, it, mustThrow, expect, assert } = require('./__common__.js')

Gtk.init()
Expand Down

0 comments on commit 6585ea3

Please sign in to comment.