blob: 1c53099a5f55af9dde1f188557c44cf348651246 [file] [log] [blame]
Gilad Arnold67ed78d2014-04-23 13:17:46 -07001// Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include <base/time/time.h>
6
7#include "update_engine/policy_manager/pmtest_utils.h"
8
9namespace chromeos_policy_manager {
10
11const unsigned PmTestUtils::kDefaultTimeoutInSeconds = 1;
12
Alex Deymo0d11c602014-04-23 20:12:20 -070013void PrintTo(const EvalStatus& status, ::std::ostream* os) {
14 *os << ToString(status);
15}
16
Gilad Arnold67ed78d2014-04-23 13:17:46 -070017} // namespace chromeos_policy_manager