Skip to content

Commit f292fa3

Browse files
Potential fix for pull request finding 'Call to System.IO.Path.Combine'
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
1 parent 2a2571a commit f292fa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/test/SessionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ public async Task Should_Pass_Streaming_Option_To_Session_Creation()
289289
[Fact]
290290
public async Task Should_Create_Session_With_Custom_Config_Dir()
291291
{
292-
var customConfigDir = Path.Combine(Ctx.HomeDir, "custom-config");
292+
var customConfigDir = Path.Join(Ctx.HomeDir, "custom-config");
293293
var session = await Client.CreateSessionAsync(new SessionConfig { ConfigDir = customConfigDir });
294294

295295
Assert.Matches(@"^[a-f0-9-]+$", session.SessionId);

0 commit comments

Comments
 (0)