We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76c1fc3 commit c0abc85Copy full SHA for c0abc85
test/SeqCli.EndToEnd/Support/IsolatedTestCase.cs
@@ -49,7 +49,7 @@ public async Task<bool> IsSupportedApiVersion(string minSeqVersion)
49
var apiVersion = (await _connection.Value.Client.GetRootAsync()).Version;
50
51
// Ignore `-pre` and other semver modifiers.
52
- Version ParseVersion(string semver) => Version.Parse(semver.Split("-")[0]);
+ System.Version ParseVersion(string semver) => System.Version.Parse(semver.Split("-")[0]);
53
54
return ParseVersion(apiVersion) >= ParseVersion(minSeqVersion);
55
}
0 commit comments