Destructors names fixed in the tests.

This commit is contained in:
Kolan Sh 2015-01-26 20:42:17 +03:00
parent 1d505afe4c
commit e59f69b16a
4 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ public class TypeA1 : PluginTypeA {
/** /**
* Destroys the ``TypeA1``. * Destroys the ``TypeA1``.
*/ */
~Test () { ~TypeA1 () {
stdout.puts ("TypeA1 deinit () called\n"); stdout.puts ("TypeA1 deinit () called\n");
} }

View File

@ -15,7 +15,7 @@ public class TypeA2 : PluginTypeA {
/** /**
* Destroys the ``TypeA2``. * Destroys the ``TypeA2``.
*/ */
~Test () { ~TypeA2 () {
stdout.puts ("TypeA2 deinit () called\n"); stdout.puts ("TypeA2 deinit () called\n");
} }

View File

@ -15,7 +15,7 @@ public class TypeB1 : PluginTypeB {
/** /**
* Destroys the ``TypeB1``. * Destroys the ``TypeB1``.
*/ */
~Test () { ~TypeB1 () {
stdout.puts ("TypeB1 deinit () called\n"); stdout.puts ("TypeB1 deinit () called\n");
} }

View File

@ -15,7 +15,7 @@ public class TypeB2 : PluginTypeB {
/** /**
* Destroys the ``TypeB2``. * Destroys the ``TypeB2``.
*/ */
~Test () { ~TypeB2 () {
stdout.puts ("TypeB2 deinit () called\n"); stdout.puts ("TypeB2 deinit () called\n");
} }