Skip to content

Commit 1ff7a1a

Browse files
committed
removed app-token in test
1 parent 4dbb43c commit 1ff7a1a

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

address-service/src/test/java/net/nautsch/address/AddressesTest.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
package net.nautsch.address;
22

3-
import static org.hamcrest.CoreMatchers.notNullValue;
4-
import static org.junit.Assert.*;
5-
6-
import org.hamcrest.CoreMatchers;
73
import org.junit.Test;
84

5+
import static org.hamcrest.CoreMatchers.notNullValue;
6+
import static org.junit.Assert.assertThat;
7+
98
/**
109
* unit test.
1110
*/
@@ -16,7 +15,7 @@ public void shouldReturnList() throws Exception {
1615
// given
1716
Addresses cut = new Addresses();
1817
// when
19-
Address[] result = cut.all("");
18+
Address[] result = cut.all();
2019
// then
2120
assertThat(result, notNullValue());
2221
}

0 commit comments

Comments
 (0)