Skip to content

Commit

Permalink
Use amd64 on all tests on all sqlserver stuff (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikbra authored Dec 18, 2023
1 parent 7a3ffd4 commit a86a904
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,7 @@ public string UserConnectionString(string database) =>
SleepTwoSeconds = "WAITFOR DELAY '00:00:02'"
};

public string ExpectedVersionPrefix => RuntimeInformation.ProcessArchitecture switch
{
Arm64 => "Microsoft Azure SQL Edge Developer",
X64 => "Microsoft SQL Server 2019",
var other => throw new PlatformNotSupportedException("Unsupported platform for running tests: " + other)
};
public string ExpectedVersionPrefix => "Microsoft SQL Server 2019";

public bool SupportsCreateDatabase => true;

Expand Down

0 comments on commit a86a904

Please sign in to comment.