review changes & changes to replace userService method that create uses

This commit is contained in:
rodicasutu
2021-01-21 09:01:46 +02:00
parent 28f9a11da2
commit 992356e1a0
2 changed files with 10 additions and 5 deletions

View File

@@ -58,15 +58,15 @@
<artifactId>restapi</artifactId>
<version>${tas.restapi.version}</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
<exclusion>
<groupId>org.alfresco.tas</groupId>
<artifactId>utility</artifactId>
</exclusion>
</exclusions>
</exclusions>
</dependency>
<dependency>
<groupId>org.alfresco.tas</groupId>

View File

@@ -37,6 +37,11 @@ import java.util.UUID;
*/
public class CommonTestUtils
{
/**
* The default pattern used for the user full name when users are created with tas utility
*/
public static final String USER_FULLNAME_PATTERN = "FN-%1$s LN-%1$s";
/** Private constructor to prevent instantiation. */
private CommonTestUtils()
{