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

Unified Diff: chrome/browser/android/vr_shell/gltf_parser_unittest.cc

Issue 2776423002: Fixing glTF parser tests' path registration. (Closed)
Patch Set: Created 3 years, 9 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/vr_shell/gltf_parser_unittest.cc
diff --git a/chrome/browser/android/vr_shell/gltf_parser_unittest.cc b/chrome/browser/android/vr_shell/gltf_parser_unittest.cc
index 0af89cf2b9804e8fc9341113eeb408478ae74a4a..944326bf4ae9bc7127518903c8a8079b1f7988c5 100644
--- a/chrome/browser/android/vr_shell/gltf_parser_unittest.cc
+++ b/chrome/browser/android/vr_shell/gltf_parser_unittest.cc
@@ -19,10 +19,9 @@ namespace vr_shell {
class GltfParserTest : public testing::Test {
protected:
- void SetUp() override {
- test::RegisterPathProvider();
- PathService::Get(test::DIR_TEST_DATA, &data_dir_);
- }
+ static void SetUpTestCase() { test::RegisterPathProvider(); }
+
+ void SetUp() override { PathService::Get(test::DIR_TEST_DATA, &data_dir_); }
base::FilePath data_dir_;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698