same Java class names used in different tests breaking the test fix
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9276 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
38a17f30fe
commit
ee13e546eb
1 changed files with 3 additions and 3 deletions
|
|
@ -14,7 +14,7 @@ public class director_thread_runme {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String argv[]) {
|
public static void main(String argv[]) {
|
||||||
Derived d = new Derived();
|
director_thread_Derived d = new director_thread_Derived();
|
||||||
d.run();
|
d.run();
|
||||||
|
|
||||||
if (d.getVal() >= 0) {
|
if (d.getVal() >= 0) {
|
||||||
|
|
@ -23,8 +23,8 @@ public class director_thread_runme {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class Derived extends Foo {
|
class director_thread_Derived extends Foo {
|
||||||
Derived() {
|
director_thread_Derived() {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue