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

Commit 1fd78abb authored by Kevin Rocard's avatar Kevin Rocard Committed by android-build-merger
Browse files

Audio VTS was testing wrong uninitialized variable due to typo

am: 72641e7a

Change-Id: I590efc99f853e1db7fa0747f9c91946913bb3679
parents 8714335f 72641e7a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -558,11 +558,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);
        }
    }
}