Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Update GetTestsAsync method signature to include CancellationToken
  • Loading branch information
thomhurst committed Aug 7, 2025
commit efce5372a093ee68b54d0bbb95fb76bccd6d549a
Original file line number Diff line number Diff line change
Expand Up @@ -2321,7 +2321,7 @@ namespace .
}
public interface ITestSource
{
.<.<.TestMetadata>> GetTestsAsync(string testSessionId);
.<.TestMetadata> GetTestsAsync(string testSessionId, .CancellationToken cancellationToken = default);
}
public sealed class PropertyInjectionMetadata
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2321,7 +2321,7 @@ namespace .
}
public interface ITestSource
{
.<.<.TestMetadata>> GetTestsAsync(string testSessionId);
.<.TestMetadata> GetTestsAsync(string testSessionId, .CancellationToken cancellationToken = default);
}
public sealed class PropertyInjectionMetadata
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2211,7 +2211,7 @@ namespace .
}
public interface ITestSource
{
.<.<.TestMetadata>> GetTestsAsync(string testSessionId);
.<.TestMetadata> GetTestsAsync(string testSessionId, .CancellationToken cancellationToken = default);
}
public sealed class PropertyInjectionMetadata
{
Expand Down
Loading