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

Commit dd7aeb48 authored by Chong Zhang's avatar Chong Zhang
Browse files

transcoding: fix timeout value

ag/11816122 tried to changed timeout from 200ms->1000ms, but
set it to 10000ms instead, causing test expecting no events
to run for too long.

Bug: 145628554
Bug: 154734285
Change-Id: I980705f6af876d0945fedd216355b05627d34e9e
parent a838681e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ constexpr uid_t kClientUid = 5000;
constexpr int32_t kClientId = 0;
#define CLIENT(n) (kClientId + (n))

constexpr int64_t kPaddingUs = 10000000;
constexpr int64_t kPaddingUs = 1000000;
constexpr int64_t kJobWithPaddingUs = SimulatedTranscoder::kJobDurationUs + kPaddingUs;

constexpr const char* kClientName = "TestClient";