mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 05:34:11 +03:00
Format previous change.
This commit is contained in:
parent
82a01c876e
commit
e2cccbc7b5
@ -68,7 +68,10 @@ fn num_floor_division() {
|
|||||||
#[cfg(not(feature = "wasm"))]
|
#[cfg(not(feature = "wasm"))]
|
||||||
#[test]
|
#[test]
|
||||||
fn num_floor_checked_division_success() {
|
fn num_floor_checked_division_success() {
|
||||||
expect_success("Num.divFloorChecked 4 3", "Ok 1 : Result (Int *) [ DivByZero ]*");
|
expect_success(
|
||||||
|
"Num.divFloorChecked 4 3",
|
||||||
|
"Ok 1 : Result (Int *) [ DivByZero ]*",
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(feature = "wasm"))]
|
#[cfg(not(feature = "wasm"))]
|
||||||
@ -89,7 +92,10 @@ fn num_ceil_division() {
|
|||||||
#[cfg(not(feature = "wasm"))]
|
#[cfg(not(feature = "wasm"))]
|
||||||
#[test]
|
#[test]
|
||||||
fn num_ceil_checked_division_success() {
|
fn num_ceil_checked_division_success() {
|
||||||
expect_success("Num.divCeilChecked 4 3", "Ok 2 : Result (Int *) [ DivByZero ]*")
|
expect_success(
|
||||||
|
"Num.divCeilChecked 4 3",
|
||||||
|
"Ok 2 : Result (Int *) [ DivByZero ]*",
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
Loading…
Reference in New Issue
Block a user