diff --git a/smart_tests/commands/record/build.py b/smart_tests/commands/record/build.py index 57bbfce17..2580bfd37 100644 --- a/smart_tests/commands/record/build.py +++ b/smart_tests/commands/record/build.py @@ -337,7 +337,7 @@ def compute_links(): def report(ws: List[Workspace], build_id: str): org, workspace = get_org_workspace() click.echo( - f"Launchable recorded build {build_name} to workspace {org} / {workspace} with commits from " + f"Smart Tests recorded build {build_name} to workspace {org} / {workspace} with commits from " f"{len(ws)} {'repositories' if len(ws) > 1 else 'repository'}: \n") header = ["Name", "Path", "HEAD Commit"] diff --git a/src/main/java/com/launchableinc/ingest/commits/Main.java b/src/main/java/com/launchableinc/ingest/commits/Main.java index a093edd75..ef6b88f07 100644 --- a/src/main/java/com/launchableinc/ingest/commits/Main.java +++ b/src/main/java/com/launchableinc/ingest/commits/Main.java @@ -144,7 +144,7 @@ void run() throws CmdLineException, IOException { cgc.transfer(endpoint, authenticator, enableTimeout); int numCommits = cgc.getCommitsSent(); int numFiles = cgc.getFilesSent(); - System.out.printf("Launchable transferred %d more %s and %d more %s from repository %s%n", + System.out.printf("Smart Tests transferred %d more %s and %d more %s from repository %s%n", numCommits, plural(numCommits, "commit"), numFiles, plural(numFiles, "file"), repo);