Skip to content

Commit

Permalink
[tests] reenable some module level fields tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kLabz committed Jul 10, 2023
1 parent 451befd commit 1c88a94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/unit/src/unit/issues/Issue9603.hx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package unit.issues;
import unit.Test;

// function sort<T:{next:T}>(l:T) {}
function sort<T:{next:T}>(l:T) {}

private class C {
public var next:C;
Expand All @@ -11,7 +11,7 @@ private class C {

class Issue9603 extends Test {
function test() {
// sort(new C());
sort(new C());
utest.Assert.pass();
}
}
3 changes: 1 addition & 2 deletions tests/unit/src/unit/issues/Issue9777.hx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ private function g() {

class Issue9777 extends unit.Test {
function test() {
// t(g());
utest.Assert.pass();
t(g());
}
}

0 comments on commit 1c88a94

Please sign in to comment.