Skip to content

Commit 7585ef4

Browse files
Enable test fixed by #13939 (#14235)
- #13939 fixed on so far `@Ignore`d test - this PR enables it
1 parent e2c01cf commit 7585ef4

File tree

1 file changed

+1
-2
lines changed
  • engine/runtime-integration-tests/src/test/java/org/enso/interpreter/node/expression/builtin/meta

1 file changed

+1
-2
lines changed

engine/runtime-integration-tests/src/test/java/org/enso/interpreter/node/expression/builtin/meta/TypeChainTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
import org.junit.AfterClass;
1313
import org.junit.BeforeClass;
1414
import org.junit.ClassRule;
15-
import org.junit.Ignore;
1615
import org.junit.Test;
1716

1817
public class TypeChainTest {
@@ -133,7 +132,6 @@ public void anyChain() {
133132
}
134133

135134
/** {@code allTypes(Any.type) == [Any.type, Any]} */
136-
@Ignore("Will be addressed in #13939")
137135
@Test
138136
public void anyEigentypeChain() {
139137
var any = ctx.ensoContext().getBuiltins().any();
@@ -150,6 +148,7 @@ public void anyEigentypeChain() {
150148
"allTypes(Any.type) == [Any.type, Any]", new Object[] {anyEigenType, anyTypeExpected}, all);
151149
}
152150

151+
/** {@code allTypes(Error) == [Error, Any]} */
153152
@Test
154153
public void errorChain() {
155154
var errType = ctx.ensoContext().getBuiltins().dataflowError();

0 commit comments

Comments
 (0)