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

Unified Diff: third_party/WebKit/Source/core/loader/modulescript/ModuleTreeLinkerTest.cpp

Issue 2826423002: [ES6 modules] Cosmetic changes to ModuleTreeLinker (Closed)
Patch Set: nhiroki/hiroshige Created 3 years, 8 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 | « third_party/WebKit/Source/core/loader/modulescript/ModuleTreeLinker.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/loader/modulescript/ModuleTreeLinkerTest.cpp
diff --git a/third_party/WebKit/Source/core/loader/modulescript/ModuleTreeLinkerTest.cpp b/third_party/WebKit/Source/core/loader/modulescript/ModuleTreeLinkerTest.cpp
index ef8355dc024447088aabb4acb6909e023d919504..17187ee5de030d910f707eaa6f5f9fcd13bccbf8 100644
--- a/third_party/WebKit/Source/core/loader/modulescript/ModuleTreeLinkerTest.cpp
+++ b/third_party/WebKit/Source/core/loader/modulescript/ModuleTreeLinkerTest.cpp
@@ -225,7 +225,7 @@ void ModuleTreeLinkerTest::SetUp() {
modulator_ = new ModuleTreeLinkerTestModulator(script_state);
}
-TEST_F(ModuleTreeLinkerTest, fetchTreeNoDeps) {
+TEST_F(ModuleTreeLinkerTest, FetchTreeNoDeps) {
ModuleTreeLinkerRegistry* registry = ModuleTreeLinkerRegistry::Create();
KURL url(kParsedURLString, "http://example.com/root.js");
@@ -247,7 +247,7 @@ TEST_F(ModuleTreeLinkerTest, fetchTreeNoDeps) {
ModuleInstantiationState::kInstantiated);
}
-TEST_F(ModuleTreeLinkerTest, fetchTreeInstantiationFailure) {
+TEST_F(ModuleTreeLinkerTest, FetchTreeInstantiationFailure) {
GetModulator()->SetInstantiateShouldFail(true);
ModuleTreeLinkerRegistry* registry = ModuleTreeLinkerRegistry::Create();
@@ -271,7 +271,7 @@ TEST_F(ModuleTreeLinkerTest, fetchTreeInstantiationFailure) {
ModuleInstantiationState::kErrored);
}
-TEST_F(ModuleTreeLinkerTest, fetchTreeWithSingleDependency) {
+TEST_F(ModuleTreeLinkerTest, FetchTreeWithSingleDependency) {
ModuleTreeLinkerRegistry* registry = ModuleTreeLinkerRegistry::Create();
KURL url(kParsedURLString, "http://example.com/root.js");
@@ -304,7 +304,7 @@ TEST_F(ModuleTreeLinkerTest, fetchTreeWithSingleDependency) {
ModuleInstantiationState::kInstantiated);
}
-TEST_F(ModuleTreeLinkerTest, fetchTreeWith3Deps) {
+TEST_F(ModuleTreeLinkerTest, FetchTreeWith3Deps) {
ModuleTreeLinkerRegistry* registry = ModuleTreeLinkerRegistry::Create();
KURL url(kParsedURLString, "http://example.com/root.js");
@@ -354,7 +354,7 @@ TEST_F(ModuleTreeLinkerTest, fetchTreeWith3Deps) {
ModuleInstantiationState::kInstantiated);
}
-TEST_F(ModuleTreeLinkerTest, fetchTreeWith3Deps1Fail) {
+TEST_F(ModuleTreeLinkerTest, FetchTreeWith3Deps1Fail) {
ModuleTreeLinkerRegistry* registry = ModuleTreeLinkerRegistry::Create();
KURL url(kParsedURLString, "http://example.com/root.js");
@@ -413,7 +413,7 @@ TEST_F(ModuleTreeLinkerTest, fetchTreeWith3Deps1Fail) {
EXPECT_TRUE(url_deps.IsEmpty());
}
-TEST_F(ModuleTreeLinkerTest, fetchDependencyTree) {
+TEST_F(ModuleTreeLinkerTest, FetchDependencyTree) {
ModuleTreeLinkerRegistry* registry = ModuleTreeLinkerRegistry::Create();
KURL url(kParsedURLString, "http://example.com/depth1.js");
« no previous file with comments | « third_party/WebKit/Source/core/loader/modulescript/ModuleTreeLinker.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698