Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b3e86d48 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Audio VTS was testing wrong uninitialized variable due to typo" into pie-vts-dev

parents 2910e64d 8073d8e4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -555,11 +555,11 @@ TEST_F(AudioPrimaryHidlTest, SetConnectedState) {
            address.device = deviceType;
            auto ret = device->setConnectedState(address, state);
            ASSERT_TRUE(ret.isOk());
            if (res == Result::NOT_SUPPORTED) {
            if (ret == Result::NOT_SUPPORTED) {
                doc::partialTest("setConnectedState is not supported");
                return;
            }
            ASSERT_OK(res);
            ASSERT_OK(ret);
        }
    }
}