Skip to content

Commit a0c7171

Browse files
committed
Select query update
1 parent ea41156 commit a0c7171

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

QueryDB.Core.Tests/App.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
<add key="UseDocker" value="true" />
55
<add key="SQLServerConnection" value="Data Source=(local);Initial Catalog=master;User Id=SA;Password=__DB_PASSWORD__;Encrypt=False;" />
66
<add key="MySQLConnection" value="server=localhost;database=mysql;uid=root;pwd=__DB_PASSWORD__;" />
7-
<add key="OracleConnection" value="Data Source = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))(CONNECT_DATA = (SERVER = DEDICATED)(SID = XE))); User Id = system;Password=__DB_PASSWORD__;" />
7+
<add key="OracleConnection" value="Data Source = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))(CONNECT_DATA = (SERVER = DEDICATED)(SID = XE))); User Id = system;Password=__DB_PASSWORD__;" />
88
</appSettings>
99
</configuration>

QueryDB.Core.Tests/Queries.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ internal static class Smoke
1010
}
1111
internal static class SalesDB
1212
{
13-
public static string SelectSql = @"SELECT * FROM AGENTS";
13+
public static string SelectSql = @"SELECT * FROM Agents";
1414
}
1515
}
1616

@@ -22,7 +22,7 @@ internal static class Smoke
2222
}
2323
internal static class SalesDB
2424
{
25-
public static string SelectSql = @"SELECT * FROM AGENTS";
25+
public static string SelectSql = @"SELECT * FROM Agents";
2626
}
2727
}
2828

@@ -34,7 +34,7 @@ internal static class Smoke
3434
}
3535
internal static class SalesDB
3636
{
37-
public static string SelectSql = @"SELECT * FROM AGENTS";
37+
public static string SelectSql = @"SELECT * FROM Agents";
3838
}
3939
}
4040
}

0 commit comments

Comments
 (0)