mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-31 17:17:26 +00:00
remove empty list test case for inspect
This commit is contained in:
parent
4b911524ac
commit
01032c3b11
1 changed files with 2 additions and 4 deletions
|
@ -2254,17 +2254,15 @@ mod inspect {
|
|||
app "test" provides [main] to "./platform"
|
||||
|
||||
main = [
|
||||
Inspect.inspect [], # List *
|
||||
Inspect.inspect [0, 1, 2], # List (Num *)
|
||||
Inspect.inspect [1, 0x2, 3], # List (Int *)
|
||||
# TODO: Re-enable when Frac is fixed for inspect.
|
||||
# Inspect.inspect [0.1 + 0.2, 0.4], # List (Frac *)
|
||||
Inspect.inspect [0.1 + 0.2, 0.4], # List (Frac *)
|
||||
Inspect.inspect [1u8, 2u8], # List U8
|
||||
Inspect.inspect ["foo"], # List Str
|
||||
] |> List.map Inspect.toDbgStr |> Str.joinWith ", "
|
||||
"#
|
||||
),
|
||||
RocStr::from("[], [0, 1, 2], [1, 2, 3], [0.3, 0.4], [1, 2], [\"foo\"]"),
|
||||
RocStr::from("[0, 1, 2], [1, 2, 3], [0.3, 0.4], [1, 2], [\"foo\"]"),
|
||||
RocStr
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue