Skip to content

Commit e3ea9f1

Browse files
author
Your Name
committed
[paribu] large structure refactor operation knowm#2432
1 parent d902403 commit e3ea9f1

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

xchange-paribu/src/test/java/org/knowm/xchange/paribu/ParibuAdapterTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class ParibuAdapterTest {
2121
@Test
2222
public void testTickerAdapter() throws IOException {
2323
// Read in the JSON from the example resources
24-
InputStream is = ParibuAdapterTest.class.getResourceAsStream("/marketdata/example-ticker-data.json");
24+
InputStream is = ParibuAdapterTest.class.getResourceAsStream("/org/knowm/xchange/paribu/dto/marketdata/example-ticker-data.json");
2525
// Use Jackson to parse it
2626
ObjectMapper mapper = new ObjectMapper();
2727
ParibuTicker paribuTicker = mapper.readValue(is, ParibuTicker.class);

xchange-paribu/src/test/java/org/knowm/xchange/paribu/dto/marketdata/ParibuTickerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class ParibuTickerTest {
1919
public void testUnmarshal() throws IOException {
2020

2121
// Read in the JSON from the example resources
22-
InputStream is = ParibuTickerTest.class.getResourceAsStream("/marketdata/example-ticker-data.json");
22+
InputStream is = ParibuTickerTest.class.getResourceAsStream("/org/knowm/xchange/paribu/dto/marketdata/example-ticker-data.json");
2323
ObjectMapper mapper = new ObjectMapper();
2424
ParibuTicker paribuTicker = mapper.readValue(is, ParibuTicker.class);
2525

xchange-paribu/src/test/resources/marketdata/example-ticker-data.json renamed to xchange-paribu/src/test/resources/org/knowm/xchange/paribu/dto/marketdata/example-ticker-data.json

File renamed without changes.

0 commit comments

Comments
 (0)