diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-08 12:31:32 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-08 12:31:32 +0200 |
commit | 9ef50524d0c981b4898dc99bd27e3f030836256b (patch) | |
tree | 1b9e35c9446249229679ce39d726cf535819d52a /tests/core/math/test_math_funcs.h | |
parent | f349418fc00b2048d5dda657102e9a3eb9bebc64 (diff) | |
parent | 7d03b1de0b7a2f7a7972716a40277c7aa231f542 (diff) | |
download | redot-engine-9ef50524d0c981b4898dc99bd27e3f030836256b.tar.gz |
Merge pull request #91696 from akien-mga/style-file-format
Style: Trim trailing whitespace and ensure newline at EOF
Diffstat (limited to 'tests/core/math/test_math_funcs.h')
-rw-r--r-- | tests/core/math/test_math_funcs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core/math/test_math_funcs.h b/tests/core/math/test_math_funcs.h index f2eae3a20d..68540e4d61 100644 --- a/tests/core/math/test_math_funcs.h +++ b/tests/core/math/test_math_funcs.h @@ -382,7 +382,7 @@ TEST_CASE_TEMPLATE("[Math] remap", T, float, double) { CHECK(Math::remap((T)-200.0, (T)-100.0, (T)-200.0, (T)0.0, (T)-1000.0) == doctest::Approx((T)-1000.0)); CHECK(Math::remap((T)-250.0, (T)-100.0, (T)-200.0, (T)0.0, (T)-1000.0) == doctest::Approx((T)-1500.0)); - // Note: undefined behaviour can happen when `p_istart == p_istop`. We don't bother testing this as it will + // Note: undefined behavior can happen when `p_istart == p_istop`. We don't bother testing this as it will // vary between hardware and compilers properly implementing IEEE 754. } |