summaryrefslogtreecommitdiff
path: root/tests/common/SlidingWindowTests.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/common/SlidingWindowTests.cc')
-rw-r--r--tests/common/SlidingWindowTests.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/common/SlidingWindowTests.cc b/tests/common/SlidingWindowTests.cc
index 33fe65e..b856e16 100644
--- a/tests/common/SlidingWindowTests.cc
+++ b/tests/common/SlidingWindowTests.cc
@@ -1,5 +1,5 @@
/*
- * SPDX-FileCopyrightText: Copyright 2021 Arm Limited and/or its affiliates <open-source-office@arm.com>
+ * SPDX-FileCopyrightText: Copyright 2021,2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -175,12 +175,12 @@ TEST_CASE("Common: Slide Index")
REQUIRE(slider.Index() == 0);
for (int i = 0; i < 5; i++) {
slider.Next();
- REQUIRE(slider.Index() == i);
+ REQUIRE(static_cast<int>(slider.Index()) == i);
}
}
-TEST_CASE("Common: Total strides")
+TEST_CASE("Common: Total strides")
{
std::vector<int> test{1, 2, 3, 4, 5};