Skip to content

Commit 2d471d5

Browse files
authored
Merge pull request #65 from tls-attacker/fixing_exclude_flag_test
Fixing exclude flag test
2 parents cbc3c34 + 102d98f commit 2d471d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/de/rub/nds/crawler/core/ControllerTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ void submitting() throws IOException, InterruptedException {
3333
File hostlist = File.createTempFile("hosts", "txt");
3434
hostlist.deleteOnExit();
3535
FileWriter writer = new FileWriter(hostlist);
36-
writer.write("example.com\nexample.org:8000");
36+
writer.write("127.0.0.10\n127.0.0.11:8000");
3737
writer.flush();
3838
writer.close();
3939

@@ -57,7 +57,7 @@ void submittingWithExcludedProbes() throws IOException, InterruptedException {
5757
File hostlist = File.createTempFile("hosts", "txt");
5858
hostlist.deleteOnExit();
5959
FileWriter writer = new FileWriter(hostlist);
60-
writer.write("example.com\nexample.org:443");
60+
writer.write("127.0.0.20\n127.0.0.21:443");
6161
writer.flush();
6262
writer.close();
6363

@@ -94,7 +94,7 @@ void submittingWithoutExcludedProbes() throws IOException, InterruptedException
9494
File hostlist = File.createTempFile("hosts", "txt");
9595
hostlist.deleteOnExit();
9696
FileWriter writer = new FileWriter(hostlist);
97-
writer.write("example.com");
97+
writer.write("127.0.0.30");
9898
writer.flush();
9999
writer.close();
100100

0 commit comments

Comments
 (0)