Skip to content

Commit 2b77d59

Browse files
committed
fix naming
1 parent 0b47264 commit 2b77d59

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/GraphQL.Primitives/GraphQLQuery.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class GraphQLQuery : IEquatable<GraphQLQuery>
1313
public string Text { get; }
1414

1515
/// <summary>
16-
/// The SHA256 hash used for the advanced persisted queries feature (APQ)
16+
/// The SHA256 hash used for the automatic persisted queries feature (APQ)
1717
/// </summary>
1818
public string Sha256Hash { get; }
1919

tests/GraphQL.Integration.Tests/APQ/AdvancedPersistentQueriesTest.cs renamed to tests/GraphQL.Integration.Tests/APQ/AutomaticPersistentQueriesTest.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
namespace GraphQL.Integration.Tests.APQ;
1010

1111
[SuppressMessage("ReSharper", "UseConfigureAwaitFalse")]
12-
public class AdvancedPersistentQueriesTest : IAsyncLifetime, IClassFixture<SystemTextJsonAutoNegotiateServerTestFixture>
12+
public class AutomaticPersistentQueriesTest : IAsyncLifetime, IClassFixture<SystemTextJsonAutoNegotiateServerTestFixture>
1313
{
1414
public SystemTextJsonAutoNegotiateServerTestFixture Fixture { get; }
1515
protected GraphQLHttpClient StarWarsClient;
1616
protected GraphQLHttpClient StarWarsWebsocketClient;
1717

18-
public AdvancedPersistentQueriesTest(SystemTextJsonAutoNegotiateServerTestFixture fixture)
18+
public AutomaticPersistentQueriesTest(SystemTextJsonAutoNegotiateServerTestFixture fixture)
1919
{
2020
Fixture = fixture;
2121
}

0 commit comments

Comments
 (0)