From 2dc565b3661f436aa5a7fa53a8bd09f300c31b4f Mon Sep 17 00:00:00 2001 From: James Dunkerley Date: Tue, 25 Jul 2023 14:06:11 +0000 Subject: [PATCH] Fix failing test (#7394) Fix a failing test. --- distribution/lib/Standard/Base/0.0.0-dev/package.yaml | 6 ++++-- .../interpreter/test/instrument/RuntimeComponentsTest.scala | 1 - 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/distribution/lib/Standard/Base/0.0.0-dev/package.yaml b/distribution/lib/Standard/Base/0.0.0-dev/package.yaml index dce42a430f2..7eefa0633da 100644 --- a/distribution/lib/Standard/Base/0.0.0-dev/package.yaml +++ b/distribution/lib/Standard/Base/0.0.0-dev/package.yaml @@ -10,8 +10,10 @@ maintainers: email: contact@enso.org component-groups: new: - - Input: {} - - Web: {} + - Input: + exports: [] + - Web: + exports: [] - Parse: exports: - Standard.Base.Data.Json.Json.parse diff --git a/engine/runtime-with-instruments/src/test/scala/org/enso/interpreter/test/instrument/RuntimeComponentsTest.scala b/engine/runtime-with-instruments/src/test/scala/org/enso/interpreter/test/instrument/RuntimeComponentsTest.scala index ab10066bd65..771f3fc243b 100644 --- a/engine/runtime-with-instruments/src/test/scala/org/enso/interpreter/test/instrument/RuntimeComponentsTest.scala +++ b/engine/runtime-with-instruments/src/test/scala/org/enso/interpreter/test/instrument/RuntimeComponentsTest.scala @@ -391,7 +391,6 @@ class RuntimeComponentsTest .value .extendedGroups .map(_.group) should contain theSameElementsAs Seq( - GroupReference(LibraryName("Standard", "Base"), GroupName("Input")), GroupReference(LibraryName("Standard", "Base"), GroupName("Select")), GroupReference(LibraryName("Standard", "Base"), GroupName("Join")), GroupReference(LibraryName("Standard", "Base"), GroupName("Transform")),