summaryrefslogtreecommitdiff
path: root/tests/libpeas/extension-py.c
diff options
context:
space:
mode:
authorChristian Hergert <chergert@redhat.com>2023-03-20 20:00:02 -0700
committerChristian Hergert <chergert@redhat.com>2023-03-22 16:44:35 -0700
commitaca4c87b2d4a36e6897923368c3016f3d6fcb36d (patch)
tree18ae5284676a9676baa136b86cd7445156543e44 /tests/libpeas/extension-py.c
parentaa59fe096ba3a76955d602654e53e78fbb533dbc (diff)
downloadlibpeas-aca4c87b2d4a36e6897923368c3016f3d6fcb36d.tar.gz
tests: move PeasActivatable to IntrospectionActivatable
We need this in the introspection library and there is no need to keep it in the "Peas" namespace now that it isn't part of libpeas shared library.
Diffstat (limited to 'tests/libpeas/extension-py.c')
-rw-r--r--tests/libpeas/extension-py.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/libpeas/extension-py.c b/tests/libpeas/extension-py.c
index 132482f..ed086e2 100644
--- a/tests/libpeas/extension-py.c
+++ b/tests/libpeas/extension-py.c
@@ -28,9 +28,9 @@
#include "libpeas/peas-engine-priv.h"
-#include "peas-activatable.h"
-
#include "testing/testing-extension.h"
+
+#include "introspection/introspection-activatable.h"
#include "introspection/introspection-base.h"
#define PY_LOADER python
@@ -73,7 +73,7 @@ test_extension_py_activatable_subject_refcount (PeasEngine *engine,
/* we pre-create the wrapper to make it easier to check reference count */
extension = peas_engine_create_extension (engine, info,
- PEAS_TYPE_ACTIVATABLE,
+ INTROSPECTION_TYPE_ACTIVATABLE,
"object", object,
NULL);