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

Commit 9c92544c authored by Lais Andrade's avatar Lais Andrade
Browse files

Fix capabilities check in vibrator benchmarks

Bug: 159799891
Change-Id: Ieea33d5b451f7aa24e71950652f8fa964899ebcc
Test: atest libvibratorservice_benchmarks
parent 1b66d525
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ protected:
        if (!result.isOk()) {
            return false;
        }
        return (result.value() | query) == query;
        return (result.value() & query) == query;
    }
};