Skip to content

Commit d8546dc

Browse files
Update test to use GetShortName
1 parent ec9f8a5 commit d8546dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/SqlBulkCopyTest/TestBulkCopyWithUTF8.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ namespace Microsoft.Data.SqlClient.ManualTesting.Tests.SQL.SqlBulkCopyTest
1515
/// </summary>
1616
public sealed class TestBulkCopyWithUtf8 : IDisposable
1717
{
18-
private static string s_sourceTable = DataTestUtility.GetUniqueName("SourceTableForUTF8Data");
19-
private static string s_destinationTable = DataTestUtility.GetUniqueName("DestinationTableForUTF8Data");
18+
private static string s_sourceTable = DataTestUtility.GetShortName("SourceTableForUTF8Data");
19+
private static string s_destinationTable = DataTestUtility.GetShortName("DestinationTableForUTF8Data");
2020
private static string s_testValue = "test";
2121
private static byte[] s_testValueInUtf8Bytes = new byte[] { 0x74, 0x65, 0x73, 0x74 };
2222
private static readonly string s_insertQuery = $"INSERT INTO {s_sourceTable} VALUES('{s_testValue}')";

0 commit comments

Comments
 (0)