Skip to content

Commit 874f0d8

Browse files
committed
fix: failing tests
1 parent b309ebd commit 874f0d8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/Reliable.HttpClient.Tests/BuilderIntegrationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public void MinimalConfiguration_WithOnlyRequiredSettings_WorksCorrectly()
196196
options.BaseUrl.Should().Be("https://minimal.example.com");
197197
// All other values should be defaults
198198
options.TimeoutSeconds.Should().Be(30);
199-
options.UserAgent.Should().Be("Reliable.HttpClient/1.1.0");
199+
options.UserAgent.Should().Be("Reliable.HttpClient/1.2.0");
200200
options.DefaultHeaders.Should().BeEmpty();
201201
options.Retry.MaxRetries.Should().Be(3);
202202
options.CircuitBreaker.Enabled.Should().BeTrue();

tests/Reliable.HttpClient.Tests/HttpClientOptionsAdditionalTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public void DefaultValues_AreSetCorrectly()
3131
// Assert
3232
options.BaseUrl.Should().BeEmpty();
3333
options.TimeoutSeconds.Should().Be(30);
34-
options.UserAgent.Should().Be("Reliable.HttpClient/1.1.0");
34+
options.UserAgent.Should().Be("Reliable.HttpClient/1.2.0");
3535
options.DefaultHeaders.Should().NotBeNull();
3636
options.DefaultHeaders.Should().BeEmpty();
3737
options.Retry.Should().NotBeNull();

0 commit comments

Comments
 (0)