Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
lilgreenbird committed Apr 17, 2024
1 parent 1923da9 commit bf591f2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Expand Up @@ -53,13 +53,7 @@ public class EnclaveTest extends AESetup {
@ParameterizedTest
@MethodSource("enclaveParams")
public void testBasicConnection(String serverName, String url, String protocol) throws Exception {
System.out.println("serverName= " + serverName);
System.out.println("url= " + url);
System.out.println("protocol= " + protocol);

System.out.println("before: AETestConnectionString= " +AETestConnectionString);
setAEConnectionString(serverName, url, protocol);
System.out.println("after: AETestConnectionString= " +AETestConnectionString);
EnclavePackageTest.testBasicConnection(AETestConnectionString, protocol);
}

Expand Down
Expand Up @@ -22,7 +22,6 @@
import java.util.TimeZone;
import java.util.UUID;

import org.junit.Assert;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Tag;
Expand All @@ -41,8 +40,6 @@
import com.microsoft.sqlserver.testframework.AbstractTest;
import com.microsoft.sqlserver.testframework.Constants;

import javax.sql.DataSource;


/**
* Test CallableStatement
Expand Down Expand Up @@ -1187,7 +1184,6 @@ public void testFourPartSyntaxCallEscapeSyntax() throws SQLException {
ds.setTrustServerCertificate(true);

try (Connection linkedServerConnection = ds.getConnection();
// Statement stmt = linkedServerConnection.createStatement()) {
Statement stmt = linkedServerConnection.createStatement()) {
stmt.execute(
"create or alter procedure dbo.TestAdd(@Num1 int, @Num2 int, @Result int output) as begin set @Result = @Num1 + @Num2; end;");
Expand Down

0 comments on commit bf591f2

Please sign in to comment.