Chromium Code Reviews

Unified Diff: generated/googleapis_beta/test/oslogin/v1alpha_test.dart

Issue 3003493002: Api-Roll 53: 2017-08-21 (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: generated/googleapis_beta/test/oslogin/v1alpha_test.dart
diff --git a/generated/googleapis_beta/test/oslogin/v1alpha_test.dart b/generated/googleapis_beta/test/oslogin/v1alpha_test.dart
index 3f4292eba0f3aa777453a9eebe2491297d383467..ce6d06599533a8d082dbe3335e3c058e06d8cc9b 100644
--- a/generated/googleapis_beta/test/oslogin/v1alpha_test.dart
+++ b/generated/googleapis_beta/test/oslogin/v1alpha_test.dart
@@ -87,27 +87,27 @@ checkImportSshPublicKeyResponse(api.ImportSshPublicKeyResponse o) {
buildCounterImportSshPublicKeyResponse--;
}
-buildUnnamed3392() {
+buildUnnamed3424() {
var o = new core.List<api.PosixAccount>();
o.add(buildPosixAccount());
o.add(buildPosixAccount());
return o;
}
-checkUnnamed3392(core.List<api.PosixAccount> o) {
+checkUnnamed3424(core.List<api.PosixAccount> o) {
unittest.expect(o, unittest.hasLength(2));
checkPosixAccount(o[0]);
checkPosixAccount(o[1]);
}
-buildUnnamed3393() {
+buildUnnamed3425() {
var o = new core.Map<core.String, api.SshPublicKey>();
o["x"] = buildSshPublicKey();
o["y"] = buildSshPublicKey();
return o;
}
-checkUnnamed3393(core.Map<core.String, api.SshPublicKey> o) {
+checkUnnamed3425(core.Map<core.String, api.SshPublicKey> o) {
unittest.expect(o, unittest.hasLength(2));
checkSshPublicKey(o["x"]);
checkSshPublicKey(o["y"]);
@@ -119,8 +119,8 @@ buildLoginProfile() {
buildCounterLoginProfile++;
if (buildCounterLoginProfile < 3) {
o.name = "foo";
- o.posixAccounts = buildUnnamed3392();
- o.sshPublicKeys = buildUnnamed3393();
+ o.posixAccounts = buildUnnamed3424();
+ o.sshPublicKeys = buildUnnamed3425();
o.suspended = true;
}
buildCounterLoginProfile--;
@@ -131,8 +131,8 @@ checkLoginProfile(api.LoginProfile o) {
buildCounterLoginProfile++;
if (buildCounterLoginProfile < 3) {
unittest.expect(o.name, unittest.equals('foo'));
- checkUnnamed3392(o.posixAccounts);
- checkUnnamed3393(o.sshPublicKeys);
+ checkUnnamed3424(o.posixAccounts);
+ checkUnnamed3425(o.sshPublicKeys);
unittest.expect(o.suspended, unittest.isTrue);
}
buildCounterLoginProfile--;

Powered by Google App Engine