summaryrefslogtreecommitdiffstats
path: root/infra/translate-impl/src/test/java/io/fd/honeycomb/translate/impl/write/GenericListWriterTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'infra/translate-impl/src/test/java/io/fd/honeycomb/translate/impl/write/GenericListWriterTest.java')
-rw-r--r--infra/translate-impl/src/test/java/io/fd/honeycomb/translate/impl/write/GenericListWriterTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/infra/translate-impl/src/test/java/io/fd/honeycomb/translate/impl/write/GenericListWriterTest.java b/infra/translate-impl/src/test/java/io/fd/honeycomb/translate/impl/write/GenericListWriterTest.java
index 20cabc5b4..36ab85eff 100644
--- a/infra/translate-impl/src/test/java/io/fd/honeycomb/translate/impl/write/GenericListWriterTest.java
+++ b/infra/translate-impl/src/test/java/io/fd/honeycomb/translate/impl/write/GenericListWriterTest.java
@@ -60,8 +60,8 @@ public class GenericListWriterTest {
public void setUp() throws Exception {
MockitoAnnotations.initMocks(this);
writer = new GenericListWriter<>(DATA_OBJECT_ID, customizer, validator);
- when(before.getKey()).thenReturn(beforeKey);
- when(after.getKey()).thenReturn(keyAfter);
+ when(before.key()).thenReturn(beforeKey);
+ when(after.key()).thenReturn(keyAfter);
}
@Test