summaryrefslogtreecommitdiff
path: root/tests/methods/bug652098.vala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/methods/bug652098.vala')
-rw-r--r--tests/methods/bug652098.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/methods/bug652098.vala b/tests/methods/bug652098.vala
index d16f27f5d..3cb19cab7 100644
--- a/tests/methods/bug652098.vala
+++ b/tests/methods/bug652098.vala
@@ -42,14 +42,14 @@ void main () {
var obj1 = new Obj1 ();
var iface1 = (Iface1) obj1;
var iface2 = (Iface2) obj1;
-
+
assert (iface1.foo () == 1);
assert (iface2.foo () == 2);
var obj2 = new Obj2 ();
iface1 = (Iface1) obj2;
iface2 = (Iface2) obj2;
-
+
assert (iface1.foo () == 1);
assert (iface2.foo () == 2);
} \ No newline at end of file