summaryrefslogtreecommitdiff
path: root/cli/tools/test/mod.rs
diff options
context:
space:
mode:
authorLuca Casonato <hello@lcas.dev>2023-09-27 19:55:54 +0900
committerGitHub <noreply@github.com>2023-09-27 10:55:54 +0000
commitaef56f3d70f3c898d7c99b74ad72cc08a16e5780 (patch)
tree31120973d7556e48e94e64de9f92399eaafec6ba /cli/tools/test/mod.rs
parent3b78981ffe7cbc210da4a8ba3852f3fed48082ce (diff)
fix(cli): panic with __runtime_js_sources (#20704)
Also a drive-by cleanup elsewhere (removing unused enum). Fixes #20702
Diffstat (limited to 'cli/tools/test/mod.rs')
-rw-r--r--cli/tools/test/mod.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/cli/tools/test/mod.rs b/cli/tools/test/mod.rs
index 550ec9f9b..bf466579f 100644
--- a/cli/tools/test/mod.rs
+++ b/cli/tools/test/mod.rs
@@ -173,13 +173,6 @@ pub struct TestDescription {
pub location: TestLocation,
}
-#[derive(Debug, Clone, Eq, PartialEq, Deserialize)]
-#[serde(rename_all = "camelCase")]
-pub enum TestOutput {
- String(String),
- Bytes(Vec<u8>),
-}
-
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Debug, Clone, PartialEq, Deserialize)]
#[serde(rename_all = "camelCase")]