Skip to content

Commit 50bf4d3

Browse files
committed
test: fix type of ArrayList in DataReader test
Signed-off-by: Ruben Moral <ruben.moral@digi.com>
1 parent 51cfb16 commit 50bf4d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/src/test/java/com/digi/xbee/api/connection/DataReaderTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2017-2019, Digi International Inc.
2+
* Copyright 2017-2022, Digi International Inc.
33
*
44
* This Source Code Form is subject to the terms of the Mozilla Public
55
* License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -1015,7 +1015,7 @@ public final void testAddIPDataReceiveListenerExistingListener() {
10151015

10161016
reader.addIPDataReceiveListener(l);
10171017

1018-
ArrayList<IIOSampleReceiveListener> list = Whitebox.getInternalState(reader, "ipDataReceiveListeners");
1018+
ArrayList<IIPDataReceiveListener> list = Whitebox.getInternalState(reader, "ipDataReceiveListeners");
10191019
assertThat(list.size(), is(equalTo(1)));
10201020
assertThat(list.contains(l), is(equalTo(true)));
10211021

0 commit comments

Comments
 (0)