From 0af7cd91bf6a49f87fad59489be86da1f407dbfb Mon Sep 17 00:00:00 2001 From: karthik2804 Date: Wed, 18 Sep 2024 15:02:59 +0200 Subject: [PATCH] fix test Signed-off-by: karthik2804 --- crates/manifest/tests/ui/maximal.json | 42 +++++++++++++-------------- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/crates/manifest/tests/ui/maximal.json b/crates/manifest/tests/ui/maximal.json index 75a40f6683..39c71ac290 100644 --- a/crates/manifest/tests/ui/maximal.json +++ b/crates/manifest/tests/ui/maximal.json @@ -90,28 +90,26 @@ }, "dependencies_inherit_configuration": true, "dependencies": { - "inner": { - "a:b/c": { - "version": "^1.2.3", - "registry": "my-registry.com", - "package": "a:b", - "export": "foo" - }, - "foo:bar/baz@0.1.0": { - "path": "path/to/component.wasm", - "export": null - }, - "fib:fub/fob": { - "path": "path/to/component.wasm", - "export": "my-export" - }, - "fizz:buzz": ">=0.1.0", - "abc:xyz@0.1.0": { - "version": "=0.1.0", - "registry": null, - "package": null, - "export": null - } + "a:b/c": { + "version": "^1.2.3", + "registry": "my-registry.com", + "package": "a:b", + "export": "foo" + }, + "foo:bar/baz@0.1.0": { + "path": "path/to/component.wasm", + "export": null + }, + "fib:fub/fob": { + "path": "path/to/component.wasm", + "export": "my-export" + }, + "fizz:buzz": ">=0.1.0", + "abc:xyz@0.1.0": { + "version": "=0.1.0", + "registry": null, + "package": null, + "export": null } } }