Skip to content

Commit

Permalink
fix(test): test use non german tel. numbers now, so litcs acks them a…
Browse files Browse the repository at this point in the history
…nd doesn'nt fill up the dlq

Co-authored-by: Sven Uhlig <[email protected]>
  • Loading branch information
insomnick and sipgate-uhlig committed Nov 14, 2024
1 parent 6717b68 commit 30899ce
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<ns1:xId>55b848ea-b4c2-4d80-a4c9-46592792e5b7</ns1:xId>
<ns1:targetIdentifiers>
<ns1:targetIdentifier>
<ns1:e164Number>4915799912345</ns1:e164Number>
<ns1:e164Number>2125552368</ns1:e164Number>
</ns1:targetIdentifier>
</ns1:targetIdentifiers>
<ns1:deliveryType>X2andX3</ns1:deliveryType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<ns1:xId>55b848ea-b4c2-4d80-a4c9-46592792e5b7</ns1:xId>
<ns1:targetIdentifiers>
<ns1:targetIdentifier>
<ns1:e164Number>4915799912346</ns1:e164Number>
<ns1:e164Number>2125552323</ns1:e164Number>
</ns1:targetIdentifier>
</ns1:targetIdentifiers>
<ns1:deliveryType>X2andX3</ns1:deliveryType>
Expand Down
2 changes: 1 addition & 1 deletion docker/network-element/sim-to-ne.http
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Content-Type: application/xml
<ns1:xId>50b93d1e-1b53-4d63-aacb-e4d99811bc0b</ns1:xId>
<ns1:targetIdentifiers>
<ns1:targetIdentifier>
<ns1:e164Number>4915799912345</ns1:e164Number>
<ns1:e164Number>2125552368</ns1:e164Number>
</ns1:targetIdentifier>
</ns1:targetIdentifiers>
<ns1:deliveryType>X2andX3</ns1:deliveryType>
Expand Down
6 changes: 3 additions & 3 deletions src/test/java/com/sipgate/li/simulator/e2e/E2ETest.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ public class E2ETest {
"ipAddress",
"192.0.2.23"
);

public static final String E164NUMBER = "4915799912345";
public static final String E164NUMBER_MODIFIED = "4915799912346";
//These have to be non german tel. numbers, so litc acks them and doesn't fill up the dlq
public static final String E164NUMBER = "2125552368"; //GHOSTBUSTERS
public static final String E164NUMBER_MODIFIED = "2125552323"; //CALL GOD
public static final Logger LOGGER = LoggerFactory.getLogger(E2ETest.class);

final SimulatorClient client;
Expand Down

0 comments on commit 30899ce

Please sign in to comment.