We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be02a53 commit 5ebc997Copy full SHA for 5ebc997
io.sloeber.tests/src/io/sloeber/core/CompileAndUpload.java
@@ -1,6 +1,6 @@
1
package io.sloeber.core;
2
3
-import static org.junit.Assert.fail;
+import static org.junit.Assert.*;
4
5
import java.io.File;
6
import java.io.FileInputStream;
@@ -139,7 +139,7 @@ public void testExamples() throws Exception {
139
+ " -DSERIAlDUMP=" + SerialDumpContent);
140
CodeDescription codeDescriptor=CodeDescription.createCustomTemplate(templateFolder);
141
Map<String, String> replacers=new TreeMap<>();
142
- replacers.put("\\{SerialMonitorSerial\\}", myBoard.mySerialPort);
+ replacers.put("{SerialMonitorSerial}", myBoard.mySerialPort);
143
codeDescriptor.setReplacers(replacers);
144
Build_Verify_upload(codeDescriptor, compileOptions, SerialDumpContent);
145
0 commit comments