Destructors names fixed in the tests.
This commit is contained in:
parent
1d505afe4c
commit
e59f69b16a
|
@ -15,7 +15,7 @@ public class TypeA1 : PluginTypeA {
|
|||
/**
|
||||
* Destroys the ``TypeA1``.
|
||||
*/
|
||||
~Test () {
|
||||
~TypeA1 () {
|
||||
stdout.puts ("TypeA1 deinit () called\n");
|
||||
}
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ public class TypeA2 : PluginTypeA {
|
|||
/**
|
||||
* Destroys the ``TypeA2``.
|
||||
*/
|
||||
~Test () {
|
||||
~TypeA2 () {
|
||||
stdout.puts ("TypeA2 deinit () called\n");
|
||||
}
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ public class TypeB1 : PluginTypeB {
|
|||
/**
|
||||
* Destroys the ``TypeB1``.
|
||||
*/
|
||||
~Test () {
|
||||
~TypeB1 () {
|
||||
stdout.puts ("TypeB1 deinit () called\n");
|
||||
}
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ public class TypeB2 : PluginTypeB {
|
|||
/**
|
||||
* Destroys the ``TypeB2``.
|
||||
*/
|
||||
~Test () {
|
||||
~TypeB2 () {
|
||||
stdout.puts ("TypeB2 deinit () called\n");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue