Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion smart_tests/commands/record/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/launchableinc/ingest/commits/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Loading