diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2020-01-14 12:35:41 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-01-14 12:35:41 +0000 |
commit | aaa77292ce7f5fa9909e1921a2881e83a520652a (patch) | |
tree | 201e16b1e65a8f624137384a86b2f74999f08c26 /gson | |
parent | 04061f9c4b04f43c55ef190a6e4afc9b3dd203d7 (diff) | |
parent | 2db87eef321b0222fdd9b0eb894c66e06343e73c (diff) |
Merge "Changed Matchers to ArgumentMatchers"
Diffstat (limited to 'gson')
-rw-r--r-- | gson/src/test/java/org/onap/policy/common/gson/internal/AdapterTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gson/src/test/java/org/onap/policy/common/gson/internal/AdapterTest.java b/gson/src/test/java/org/onap/policy/common/gson/internal/AdapterTest.java index fc98017e..9d80c860 100644 --- a/gson/src/test/java/org/onap/policy/common/gson/internal/AdapterTest.java +++ b/gson/src/test/java/org/onap/policy/common/gson/internal/AdapterTest.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * ONAP * ================================================================================ - * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -23,7 +23,7 @@ package org.onap.policy.common.gson.internal; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; -import static org.mockito.Matchers.any; +import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; |