fix wizard test
This commit is contained in:
parent
fb4582a888
commit
f51de7da81
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ public class BolusWizard {
|
|||
sb.append("IncludeBasalIOB=").append(includeBasalIOB).append("; ");
|
||||
sb.append("Superbolus=").append(superBolus).append("; ");
|
||||
sb.append("Trend=").append(trend).append("; ");
|
||||
sb.append("Profile=").append(specificProfile != null ? specificProfile.getData().toString() : "null").append("; ");
|
||||
sb.append("Profile=").append(specificProfile != null && specificProfile.getData() != null ? specificProfile.getData().toString() : "null").append("; ");
|
||||
sb.append("\n");
|
||||
|
||||
sb.append("targetBGLow=").append(targetBGLow).append("; ");
|
||||
|
|
Loading…
Reference in a new issue