Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Unified Diff: generated/googleapis/test/adexperiencereport/v1_test.dart

Issue 2987103002: Api-Roll 52: 2017-07-31 (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: generated/googleapis/test/adexperiencereport/v1_test.dart
diff --git a/generated/googleapis/test/adexperiencereport/v1_test.dart b/generated/googleapis/test/adexperiencereport/v1_test.dart
index a92f1a7b47a86e21862a7b616a884b1cbb13cf2c..e37e454dfa633fff1be6f43035137245fbdb6072 100644
--- a/generated/googleapis/test/adexperiencereport/v1_test.dart
+++ b/generated/googleapis/test/adexperiencereport/v1_test.dart
@@ -51,14 +51,14 @@ http.StreamedResponse stringResponse(
return new http.StreamedResponse(stream, status, headers: headers);
}
-buildUnnamed1725() {
+buildUnnamed1757() {
var o = new core.List<core.String>();
o.add("foo");
o.add("foo");
return o;
}
-checkUnnamed1725(core.List<core.String> o) {
+checkUnnamed1757(core.List<core.String> o) {
unittest.expect(o, unittest.hasLength(2));
unittest.expect(o[0], unittest.equals('foo'));
unittest.expect(o[1], unittest.equals('foo'));
@@ -74,7 +74,7 @@ buildPlatformSummary() {
o.enforcementTime = "foo";
o.filterStatus = "foo";
o.lastChangeTime = "foo";
- o.region = buildUnnamed1725();
+ o.region = buildUnnamed1757();
o.reportUrl = "foo";
o.underReview = true;
}
@@ -90,7 +90,7 @@ checkPlatformSummary(api.PlatformSummary o) {
unittest.expect(o.enforcementTime, unittest.equals('foo'));
unittest.expect(o.filterStatus, unittest.equals('foo'));
unittest.expect(o.lastChangeTime, unittest.equals('foo'));
- checkUnnamed1725(o.region);
+ checkUnnamed1757(o.region);
unittest.expect(o.reportUrl, unittest.equals('foo'));
unittest.expect(o.underReview, unittest.isTrue);
}
@@ -120,14 +120,14 @@ checkSiteSummaryResponse(api.SiteSummaryResponse o) {
buildCounterSiteSummaryResponse--;
}
-buildUnnamed1726() {
+buildUnnamed1758() {
var o = new core.List<api.SiteSummaryResponse>();
o.add(buildSiteSummaryResponse());
o.add(buildSiteSummaryResponse());
return o;
}
-checkUnnamed1726(core.List<api.SiteSummaryResponse> o) {
+checkUnnamed1758(core.List<api.SiteSummaryResponse> o) {
unittest.expect(o, unittest.hasLength(2));
checkSiteSummaryResponse(o[0]);
checkSiteSummaryResponse(o[1]);
@@ -138,7 +138,7 @@ buildViolatingSitesResponse() {
var o = new api.ViolatingSitesResponse();
buildCounterViolatingSitesResponse++;
if (buildCounterViolatingSitesResponse < 3) {
- o.violatingSites = buildUnnamed1726();
+ o.violatingSites = buildUnnamed1758();
}
buildCounterViolatingSitesResponse--;
return o;
@@ -147,7 +147,7 @@ buildViolatingSitesResponse() {
checkViolatingSitesResponse(api.ViolatingSitesResponse o) {
buildCounterViolatingSitesResponse++;
if (buildCounterViolatingSitesResponse < 3) {
- checkUnnamed1726(o.violatingSites);
+ checkUnnamed1758(o.violatingSites);
}
buildCounterViolatingSitesResponse--;
}

Powered by Google App Engine
This is Rietveld 408576698