Skip to content

Commit

Permalink
Update test hook names
Browse files Browse the repository at this point in the history
  • Loading branch information
gnawf committed Oct 31, 2024
1 parent b68a210 commit e9864e6
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import graphql.nadel.tests.EngineTestHook
import graphql.nadel.tests.UseHook

@UseHook
class `new-batch-hydration-instruction-hook-returns-null` : EngineTestHook {
class `batch-hydration-instruction-hook-returns-null` : EngineTestHook {
override fun makeNadel(builder: Nadel.Builder): Nadel.Builder {
return super.makeNadel(builder)
.executionHooks(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import graphql.nadel.tests.EngineTestHook
import graphql.nadel.tests.UseHook

@UseHook
class `new-batching-absent-source-input` : EngineTestHook {
class `batching-absent-source-input` : EngineTestHook {
override fun makeNadel(builder: Nadel.Builder): Nadel.Builder {
return super.makeNadel(builder)
.executionHooks(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import graphql.nadel.tests.EngineTestHook
import graphql.nadel.tests.UseHook

@UseHook
class `new-batching-conditional-hydration-in-abstract-type` : EngineTestHook {
class `batching-conditional-hydration-in-abstract-type` : EngineTestHook {
override fun makeNadel(builder: Nadel.Builder): Nadel.Builder {
return super.makeNadel(builder)
.executionHooks(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import graphql.nadel.tests.EngineTestHook
import graphql.nadel.tests.UseHook

@UseHook
class `new-batching-multiple-source-ids-going-to-different-services` : EngineTestHook {
class `batching-multiple-source-ids-going-to-different-services` : EngineTestHook {
override fun makeNadel(builder: Nadel.Builder): Nadel.Builder {
return super.makeNadel(builder)
.executionHooks(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class `batching-of-hydration-list-with-partition` : EngineTestHook {
}

@UseHook
class `new-batching-of-hydration-list-with-partition-2` : EngineTestHook {
class `batching-of-hydration-list-with-partition-2` : EngineTestHook {
override fun makeNadel(builder: Nadel.Builder): Nadel.Builder {
return builder.executionHooks(BatchHydrationHooks())
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import graphql.nadel.tests.EngineTestHook
import graphql.nadel.tests.UseHook

@UseHook
class `new-batching-single-source-id` : EngineTestHook {
class `batching-single-source-id` : EngineTestHook {
override fun makeNadel(builder: Nadel.Builder): Nadel.Builder {
return super.makeNadel(builder)
.executionHooks(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import graphql.nadel.tests.EngineTestHook
import graphql.nadel.tests.UseHook

@UseHook
class `new-batching-no-source-inputs` : EngineTestHook {
class `batching-no-source-inputs` : EngineTestHook {
override fun makeNadel(builder: Nadel.Builder): Nadel.Builder {
return super.makeNadel(builder)
.executionHooks(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class `batch-polymorphic-hydration-actor-fields-are-in-the-same-service-return-t
PolymorphicHydrationWithAliasTestHook()

@UseHook
class `new-batch-polymorphic-hydrations-are-executed-in-parallel` : PolymorphicHydrationWithAliasTestHook() {
class `batch-polymorphic-hydrations-are-executed-in-parallel` : PolymorphicHydrationWithAliasTestHook() {
private val coroutineScope = CoroutineScope(Dispatchers.Default)

override fun makeNadel(builder: Nadel.Builder): Nadel.Builder {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import graphql.nadel.tests.EngineTestHook
import graphql.nadel.tests.UseHook

@UseHook
class `new-polymorphic-hydration-instructions-use-different-inputs` : EngineTestHook {
class `polymorphic-hydration-instructions-use-different-inputs` : EngineTestHook {
override fun makeNadel(builder: Nadel.Builder): Nadel.Builder {
return super.makeNadel(builder)
.executionHooks(
Expand Down

0 comments on commit e9864e6

Please sign in to comment.