diff options
Diffstat (limited to 'test/stream/stream_formats.cpp')
-rw-r--r-- | test/stream/stream_formats.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/stream/stream_formats.cpp b/test/stream/stream_formats.cpp index 9353d008..553b59aa 100644 --- a/test/stream/stream_formats.cpp +++ b/test/stream/stream_formats.cpp @@ -2,7 +2,7 @@ /* * Copyright (C) 2019, Google Inc. * - * stream_formats.cpp - StreamFormats test + * StreamFormats test */ #include <iostream> @@ -40,10 +40,10 @@ protected: cout << "Failed " << name << endl; cout << "Sizes to test:" << endl; for (Size &size : test) - cout << size.toString() << endl; + cout << size << endl; cout << "Valid sizes:" << endl; for (Size &size : valid) - cout << size.toString() << endl; + cout << size << endl; return TestFail; } |