Skip to content

Commit d498e86

Browse files
authored
Using the latest envelope id in unit tests
1 parent d323da0 commit d498e86

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/java/SdkUnitTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class SdkUnitTests {
4545

4646
public static final String SignTest1File = "/src/test/docs/SignTest1.pdf";
4747
public static final String TemplateId = "cf2a46c2-xxxx-xxxx-xxxx-752547b1a419";
48-
public static String EnvelopeId = "50bc6a77-c324-49c0-b53d-a86139192e47"; // JUnit 4.12 runs test cases in parallel, so the envelope ID needs to be initiated as well.
48+
public static String EnvelopeId = "fc37871d-862d-4c49-ad83-b435409b601b"; // JUnit 4.12 runs test cases in parallel, so the envelope ID needs to be initiated as well.
4949

5050
// private JSON json = new JSON();
5151

@@ -667,6 +667,7 @@ public void DownLoadEnvelopeDocumentsTest()
667667

668668
Assert.assertNotNull(envelopeSummary);
669669
Assert.assertNotNull(envelopeSummary.getEnvelopeId());
670+
EnvelopeId = envelopeSummary.getEnvelopeId();
670671

671672
System.out.println("EnvelopeSummary: " + envelopeSummary);
672673

0 commit comments

Comments
 (0)