mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-22 06:54:29 +00:00
Fix build of tests
This commit is contained in:
parent
193bf38a79
commit
a0eac798cd
3 changed files with 4 additions and 4 deletions
|
@ -48,7 +48,7 @@ public abstract class Gee.TestCase : Object {
|
||||||
}
|
}
|
||||||
|
|
||||||
public GLib.TestSuite get_suite () {
|
public GLib.TestSuite get_suite () {
|
||||||
return this.suite;
|
return (owned) this.suite;
|
||||||
}
|
}
|
||||||
|
|
||||||
private class Adaptor {
|
private class Adaptor {
|
||||||
|
|
|
@ -48,7 +48,7 @@ public abstract class Gee.TestCase : Object {
|
||||||
}
|
}
|
||||||
|
|
||||||
public GLib.TestSuite get_suite () {
|
public GLib.TestSuite get_suite () {
|
||||||
return this.suite;
|
return (owned) this.suite;
|
||||||
}
|
}
|
||||||
|
|
||||||
private class Adaptor {
|
private class Adaptor {
|
||||||
|
@ -77,4 +77,4 @@ public abstract class Gee.TestCase : Object {
|
||||||
this.test_case.tear_down ();
|
this.test_case.tear_down ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,7 +56,7 @@ public abstract class Gee.TestCase : Object {
|
||||||
}
|
}
|
||||||
|
|
||||||
public GLib.TestSuite get_suite () {
|
public GLib.TestSuite get_suite () {
|
||||||
return this.suite;
|
return (owned) this.suite;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue