diff --git a/.github/workflows/install.sh b/.github/workflows/install.sh index a0600a1..094278b 100755 --- a/.github/workflows/install.sh +++ b/.github/workflows/install.sh @@ -12,7 +12,7 @@ if [[ $(uname -s) == 'Darwin' ]]; then gtk+3 \ gobject-introspection \ glib \ - libsoup \ + libsoup@2 \ cairo \ gstreamer \ gst-plugins-base \ diff --git a/tests/object__initialization.js b/tests/object__initialization.js index 6f71f16..26fca11 100644 --- a/tests/object__initialization.js +++ b/tests/object__initialization.js @@ -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()