Skip to content

Commit

Permalink
Strings are "
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewnicols committed Dec 26, 2024
1 parent 8973437 commit 2ac8110
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions runner/main/modules/docker-jmeter/libraries/recorder.bsf
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ EscapeQuotes(String text) {

DebugValue(value) {
if (value == null) {
value = '[NULL]';
value = "[NULL]";
}

String logPath = "output/logs/debug.log";
Expand All @@ -165,11 +165,11 @@ DebugValue(value) {
}

WritePhpValue(String key, null value) {
WritePhpValue(key, '');
WritePhpValue(key, "");
}

WritePhpValue(String key, null value, bool escape) {
WritePhpValue(key, '', escape);
WritePhpValue(key, "", escape);
}

WritePhpValue(String key, String value) {
Expand Down

0 comments on commit 2ac8110

Please sign in to comment.