From e7f6560247768afbca0c350df7d4ccf3909b74fa Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sun, 29 Jan 2023 22:20:43 +0100 Subject: [PATCH] remove dummy string --- crates/dagger-codegen/src/handlers/input.rs | 43 --------------------- 1 file changed, 43 deletions(-) diff --git a/crates/dagger-codegen/src/handlers/input.rs b/crates/dagger-codegen/src/handlers/input.rs index 6254e3f..7d9a0dc 100644 --- a/crates/dagger-codegen/src/handlers/input.rs +++ b/crates/dagger-codegen/src/handlers/input.rs @@ -198,46 +198,3 @@ impl Input for BuildArg {} assert_eq!(output.to_file_string().unwrap(), expected); } } - -const something: &str = r#" - { - "description": "", - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": "", - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "", - "name": "value", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "BuildArg", - "possibleTypes": null - }, - -"#;