Skip to content

Commit

Permalink
As per the review, removed the username component and slightly modifi…
Browse files Browse the repository at this point in the history
…ed the text
  • Loading branch information
James O'Connor committed Feb 20, 2025
1 parent 3387a4e commit 7ed4faf
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/test/java/com/microsoft/sqlserver/jdbc/RandomUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@ static public String getIdentifier(String prefix, int maxLength, boolean unique,
StringBuilder sb = new StringBuilder();
sb.append(prefix);
sb.append("_");
sb.append("jdbc_");
sb.append(System.getProperty("user.name").replace(".", "_"));
sb.append("_");
sb.append("jdbc_testsuite_");
// Added to always test table names with apostrophe.
sb.append("'");
if (unique) {
Expand Down

0 comments on commit 7ed4faf

Please sign in to comment.