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

Commit 6bd91399 authored by Kevin Rocard's avatar Kevin Rocard Committed by android-build-merger
Browse files

Audio VTS: run tear-down hooks in LIFO instead of FIFO

am: 01ead7c9

Change-Id: Ifbfafaacac3eb30d20890f98ec3f1ff7f7b493f2
parents d8833066 01ead7c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -124,7 +124,7 @@ class Environment : public ::testing::Environment {
   public:
    using TearDownFunc = std::function<void()>;
    void registerTearDown(TearDownFunc&& tearDown) {
        tearDowns.push_back(std::move(tearDown));
        tearDowns.push_front(std::move(tearDown));
    }

   private: