From feadac7a6600cbfa9d01c9a9513f0edbc343a3a5 Mon Sep 17 00:00:00 2001 From: Martchus Date: Sun, 28 May 2023 22:37:19 +0200 Subject: [PATCH] Adapt tests to changed note --- librepomgr/tests/buildactions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/librepomgr/tests/buildactions.cpp b/librepomgr/tests/buildactions.cpp index 6a3a0e4..8425b70 100644 --- a/librepomgr/tests/buildactions.cpp +++ b/librepomgr/tests/buildactions.cpp @@ -953,5 +953,5 @@ void BuildActionsTests::testBuildServiceCleanup() CPPUNIT_ASSERT_EQUAL_MESSAGE("one note", 1_st, messages.notes.size()); CPPUNIT_ASSERT_EQUAL_MESSAGE("no warnings", std::vector(), messages.warnings); TESTUTILS_ASSERT_LIKE("expected error", "unable to locate package cache directories:.*No such file or directory.*", messages.errors.front()); - TESTUTILS_ASSERT_LIKE("expected note", "deleted 1 build actions", messages.notes.front()); + TESTUTILS_ASSERT_LIKE("expected note", "deleted 0 build actions", messages.notes.front()); }