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

Commit 94b543c0 authored by Kevin Rocard's avatar Kevin Rocard Committed by android-build-merger
Browse files

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

am: b3e86d48

Change-Id: I13b546ec0e8785040e4096a7658474f2eff6c90e
parents c9b3988a b3e86d48
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);
        }
    }
}