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

Unified Diff: chrome/gpu/gpu_info_unittest_win.cc

Issue 6346007: Refactor and improve gpu_info_collector: collect information on linux;... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: This should turn three trybots green 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 | « chrome/gpu/gpu_info_collector_win.cc ('k') | gpu/gpu.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/gpu/gpu_info_unittest_win.cc
===================================================================
--- chrome/gpu/gpu_info_unittest_win.cc (revision 71329)
+++ chrome/gpu/gpu_info_unittest_win.cc (working copy)
@@ -62,9 +62,9 @@
TEST_F(GPUInfoTest, DriverVersionD3D) {
GPUInfo gpu_info;
ASSERT_TRUE(gpu_info_collector::CollectGraphicsInfoD3D(&d3d_, &gpu_info));
- std::wstring driver_version = gpu_info.driver_version();
+ std::string driver_version = gpu_info.driver_version();
EXPECT_FALSE(driver_version.empty());
- EXPECT_EQ(driver_version, L"6.14.11.7715");
+ EXPECT_EQ(driver_version, "6.14.11.7715");
}
TEST_F(GPUInfoTest, PixelShaderVersionD3D) {
« no previous file with comments | « chrome/gpu/gpu_info_collector_win.cc ('k') | gpu/gpu.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698