remove dummy string

This commit is contained in:
Kasper Juul Hermansen 2023-01-29 22:20:43 +01:00
parent 147114fd9b
commit e7f6560247
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912

View File

@ -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
},
"#;