diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-10-02 12:39:55 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-10-02 12:39:55 +0200 |
commit | 64b2cf0d2168a75e793d1e45d7518ae6c2997e89 (patch) | |
tree | bbad5126993fe4b504170713b255c3e634c45743 /tests/unit/adbd-client-test.cpp | |
parent | 0ba06d371cd775ce26806bca958ef1d2b95a12ac (diff) | |
parent | 03a692c88fd086d8bb2ad3fa4dbddb898bfd9bff (diff) | |
download | ayatana-indicator-display-64b2cf0d2168a75e793d1e45d7518ae6c2997e89.tar.gz ayatana-indicator-display-64b2cf0d2168a75e793d1e45d7518ae6c2997e89.tar.bz2 ayatana-indicator-display-64b2cf0d2168a75e793d1e45d7518ae6c2997e89.zip |
Merge branch 'tari01-pr/fix-cppcheck'
Attributes GH PR #60: https://github.com/AyatanaIndicators/ayatana-indicator-display/pull/60
Diffstat (limited to 'tests/unit/adbd-client-test.cpp')
-rw-r--r-- | tests/unit/adbd-client-test.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/unit/adbd-client-test.cpp b/tests/unit/adbd-client-test.cpp index b9e7a49..8e318d4 100644 --- a/tests/unit/adbd-client-test.cpp +++ b/tests/unit/adbd-client-test.cpp @@ -1,5 +1,6 @@ /* * Copyright 2016 Canonical Ltd. + * Copyright 2022 Robert Tari * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License version 3, as published @@ -15,6 +16,7 @@ * * Authors: * Charles Kerr <charles.kerr@canonical.com> + * Robert Tari <robert@tari.in> */ #include <tests/utils/test-dbus-fixture.h> @@ -56,7 +58,7 @@ TEST_F(AdbdClientFixture, SocketPlumbing) const std::string expected_pk; AdbdClient::PKResponse response; const std::string expected_response; - } tests[] = { + } const tests[] = { { "PKHelloWorld", "HelloWorld", AdbdClient::PKResponse::ALLOW, "OK" }, { "PKHelloWorld", "HelloWorld", AdbdClient::PKResponse::DENY, "NO" }, { "PKFooBar", "FooBar", AdbdClient::PKResponse::ALLOW, "OK" }, |