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

Unified Diff: components/update_client/update_response_unittest.cc

Issue 2293933003: Remove whitespace in the <ping> element closing tag in the comp updater. (Closed)
Patch Set: Remove more whitespace. Created 4 years, 4 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
« no previous file with comments | « components/update_client/update_client_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/update_client/update_response_unittest.cc
diff --git a/components/update_client/update_response_unittest.cc b/components/update_client/update_response_unittest.cc
index b41602403414eaf57b5bcfc5eb750792870bbe96..bb7010c89393eb9456adb101110c03cae0a5944a 100644
--- a/components/update_client/update_response_unittest.cc
+++ b/components/update_client/update_response_unittest.cc
@@ -99,7 +99,7 @@ const char* kMissingAppId =
"<response protocol='3.0'>"
" <app>"
" <updatecheck codebase='http://example.com/extension_1.2.3.4.crx'"
- " version='1.2.3.4' />"
+ " version='1.2.3.4'/>"
" </app>"
"</response>";
@@ -108,7 +108,7 @@ const char* kInvalidCodebase =
"<response protocol='3.0'>"
" <app appid='12345' status='ok'>"
" <updatecheck codebase='example.com/extension_1.2.3.4.crx'"
- " version='1.2.3.4' />"
+ " version='1.2.3.4'/>"
" </app>"
"</response>";
@@ -116,7 +116,7 @@ const char* kMissingVersion =
"<?xml version='1.0'?>"
"<response protocol='3.0'>"
" <app appid='12345' status='ok'>"
- " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx' />"
+ " <updatecheck codebase='http://example.com/extension_1.2.3.4.crx'/>"
" </app>"
"</response>";
@@ -175,7 +175,7 @@ const char* kSimilarTagnames =
const char* kWithDaystart =
"<?xml version='1.0' encoding='UTF-8'?>"
"<response protocol='3.0'>"
- " <daystart elapsed_seconds='456' />"
+ " <daystart elapsed_seconds='456'/>"
" <app appid='12345'>"
" <updatecheck status='ok'>"
" <urls>"
@@ -195,7 +195,7 @@ const char* kNoUpdate =
"<?xml version='1.0' encoding='UTF-8'?>"
"<response protocol='3.0'>"
" <app appid='12345'>"
- " <updatecheck status='noupdate' />"
+ " <updatecheck status='noupdate'/>"
" </app>"
"</response>";
« no previous file with comments | « components/update_client/update_client_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698