Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -415,8 +415,8 @@ public static List<String> addDsmcOptionsSuffix(List<String> commands) {
List<String> result = new ArrayList<>(commands);
// these "dsmc" options are best practice when
// using 'dsmc' for non-interactive session where simple text output is best
result.add("-displaymode=list");
result.add("-noprompt");
//result.add("-displaymode=list");
//result.add("-noprompt");
return result;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ class CommandModificationsOnMacOs {
@Test
void testCommandsWithDsmc() {
String[] result = TivoliStorageManager.cleanTsmCommand(WITH_DSMC);
assertThat(result).containsExactly("script", "-q", "/dev/null", "dsmc", "opt1", "opt2", "-displaymode=list", "-noprompt");
assertThat(result).containsExactly("script", "-q", "/dev/null", "dsmc", "opt1", "opt2");
}

@Test
Expand Down