Skip to content

Commit e40c470

Browse files
committed
[tests] Add issue number as suffix to avoid clash
1 parent cd52f68 commit e40c470

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/unit/src/scripthost/Issue12376.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
package scripthost;
22

33
#if cpp
4-
@:keep class HostParent {
4+
@:keep class HostParent12376 {
55
public function new() {}
66

77
public function methodA() {
88
return "HostParent.methodA()";
99
}
1010
}
1111

12-
@:keep class HostChild extends HostParent {
12+
@:keep class HostChild12376 extends HostParent12376 {
1313
override function methodA() {
1414
return "HostChild.methodA()";
1515
}

tests/unit/src/unit/issues/Issue12376.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Issue12376 extends Test {
1414
}
1515

1616
#if cppia
17-
private class ScriptChild extends HostChild {
17+
private class ScriptChild extends HostChild12376 {
1818
override function methodB() {
1919
return 'ScriptChild.methodB()';
2020
}

0 commit comments

Comments
 (0)