File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
<Project >
2
2
<PropertyGroup >
3
3
<!-- Published dependencies (only update on major version change) -->
4
- <JsonApiDotNetCoreFrozenVersion >5.6.0 </JsonApiDotNetCoreFrozenVersion >
4
+ <JsonApiDotNetCoreFrozenVersion >5.7.1 </JsonApiDotNetCoreFrozenVersion >
5
5
<MongoDBDriverFrozenVersion >3.3.0</MongoDBDriverFrozenVersion >
6
6
7
7
<!-- Non-published dependencies (these are safe to update, won't cause a breaking change) -->
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ namespace TestBuildingBlocks;
13
13
/// </summary>
14
14
public abstract class IntegrationTest : IAsyncLifetime
15
15
{
16
- private static readonly MediaTypeHeaderValue DefaultMediaType = MediaTypeHeaderValue . Parse ( HeaderConstants . MediaType ) ;
16
+ private static readonly MediaTypeHeaderValue DefaultMediaType = MediaTypeHeaderValue . Parse ( JsonApiMediaType . Default . ToString ( ) ) ;
17
17
18
18
private static readonly MediaTypeWithQualityHeaderValue OperationsMediaType =
19
- MediaTypeWithQualityHeaderValue . Parse ( HeaderConstants . AtomicOperationsMediaType ) ;
19
+ MediaTypeWithQualityHeaderValue . Parse ( JsonApiMediaType . AtomicOperations . ToString ( ) ) ;
20
20
21
21
private static readonly SemaphoreSlim ThrottleSemaphore = GetDefaultThrottleSemaphore ( ) ;
22
22
You can’t perform that action at this time.
0 commit comments