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

Unified Diff: ppapi/tests/test_buffer.cc

Issue 4182010: Use PASS() everywhere in ppapi/tests. (Closed) Base URL: https://ppapi.googlecode.com/svn/trunk/tests
Patch Set: First. Created 9 years, 11 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 | « no previous file | ppapi/tests/test_char_set.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/test_buffer.cc
diff --git a/ppapi/tests/test_buffer.cc b/ppapi/tests/test_buffer.cc
index bcef727da274eb86325911b91c6356d6f9aa1af8..75c3bbbc10c45b640fdd5be57c360cd6065b564e 100644
--- a/ppapi/tests/test_buffer.cc
+++ b/ppapi/tests/test_buffer.cc
@@ -30,7 +30,7 @@ std::string TestBuffer::TestInvalidSize() {
if (!zero_size.is_null())
return "Zero size accepted";
- return "";
+ PASS();
}
std::string TestBuffer::TestInitToZero() {
@@ -48,7 +48,7 @@ std::string TestBuffer::TestInitToZero() {
return "Buffer isn't entirely zero";
}
- return "";
+ PASS();
}
std::string TestBuffer::TestIsBuffer() {
@@ -72,6 +72,6 @@ std::string TestBuffer::TestIsBuffer() {
if (!buffer_interface_->IsBuffer(buffer.pp_resource()))
return "Buffer should be identified as a buffer";
- return "";
+ PASS();
}
« no previous file with comments | « no previous file | ppapi/tests/test_char_set.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698