Fix build of tests

This commit is contained in:
Marvin W 2022-04-08 22:03:31 +02:00
parent 193bf38a79
commit a0eac798cd
No known key found for this signature in database
GPG Key ID: 072E9235DB996F2A
3 changed files with 4 additions and 4 deletions

View File

@ -48,7 +48,7 @@ public abstract class Gee.TestCase : Object {
}
public GLib.TestSuite get_suite () {
return this.suite;
return (owned) this.suite;
}
private class Adaptor {

View File

@ -48,7 +48,7 @@ public abstract class Gee.TestCase : Object {
}
public GLib.TestSuite get_suite () {
return this.suite;
return (owned) this.suite;
}
private class Adaptor {
@ -77,4 +77,4 @@ public abstract class Gee.TestCase : Object {
this.test_case.tear_down ();
}
}
}
}

View File

@ -56,7 +56,7 @@ public abstract class Gee.TestCase : Object {
}
public GLib.TestSuite get_suite () {
return this.suite;
return (owned) this.suite;
}
}