From bbecaf3054629fdfe7610dffd82d931a415ac695 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Fija=C5=82kowski?= Date: Mon, 7 Dec 2020 22:48:28 +0100 Subject: [PATCH] Reformat the code once again --- boa/src/builtins/array/tests.rs | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/boa/src/builtins/array/tests.rs b/boa/src/builtins/array/tests.rs index 3b9de27817f..e4b3a6c5cce 100644 --- a/boa/src/builtins/array/tests.rs +++ b/boa/src/builtins/array/tests.rs @@ -1292,7 +1292,11 @@ fn get_relative_start() { // This test is relevant only on 32-bit archs (where usize == u32 thus `len` is u32) assert_eq!( - Array::get_relative_start(&mut context, Some(&Value::from(Number::MAX_SAFE_INTEGER)), 10), + Array::get_relative_start( + &mut context, + Some(&Value::from(Number::MAX_SAFE_INTEGER)), + 10 + ), Ok(10) ); } @@ -1349,7 +1353,11 @@ fn get_relative_end() { // This test is relevant only on 32-bit archs (where usize == u32 thus `len` is u32) assert_eq!( - Array::get_relative_end(&mut context, Some(&Value::from(Number::MAX_SAFE_INTEGER)), 10), + Array::get_relative_end( + &mut context, + Some(&Value::from(Number::MAX_SAFE_INTEGER)), + 10 + ), Ok(10) ); }