aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/client
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nnoble@google.com>2015-04-07 18:01:18 -0700
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-04-08 05:42:08 +0200
commit89219162dd613b58da8f3cd418f4825a5d566da5 (patch)
tree3c3a4b0a299e7df62caff4562863bde6377d965a /test/cpp/client
parent9973aa3aa6e29e5949f9a330cc3c1eb92c0a5830 (diff)
Refactoring std::chrono out.
Diffstat (limited to 'test/cpp/client')
-rw-r--r--test/cpp/client/credentials_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/client/credentials_test.cc b/test/cpp/client/credentials_test.cc
index 24251f297b..d7ea09a5f1 100644
--- a/test/cpp/client/credentials_test.cc
+++ b/test/cpp/client/credentials_test.cc
@@ -47,7 +47,7 @@ class CredentialsTest : public ::testing::Test {
TEST_F(CredentialsTest, InvalidServiceAccountCreds) {
std::unique_ptr<Credentials> bad1 =
- ServiceAccountCredentials("", "", std::chrono::seconds(1));
+ ServiceAccountCredentials("", "", 1);
EXPECT_EQ(nullptr, bad1.get());
}