X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=src%2Ftest%2Fjava%2Forg%2Fonap%2Faai%2Fbabel%2Fxml%2Fgenerator%2Fmodel%2FTestGeneratorUtil.java;h=9b5d05f577db46498d7bd99607f6b22c3c16fed3;hb=refs%2Fchanges%2F81%2F79781%2F1;hp=151d7c9f44343f90ae083246b67d7547031f2fed;hpb=9cd520cdd384ce196800c802118e25d89fd653fd;p=aai%2Fbabel.git diff --git a/src/test/java/org/onap/aai/babel/xml/generator/model/TestGeneratorUtil.java b/src/test/java/org/onap/aai/babel/xml/generator/model/TestGeneratorUtil.java index 151d7c9..9b5d05f 100644 --- a/src/test/java/org/onap/aai/babel/xml/generator/model/TestGeneratorUtil.java +++ b/src/test/java/org/onap/aai/babel/xml/generator/model/TestGeneratorUtil.java @@ -2,13 +2,14 @@ * ============LICENSE_START======================================================= * org.onap.aai * ================================================================================ - * Copyright © 2017-2018 Nokia Networks Intellectual Property. All rights reserved. + * Copyright (c) 2017-2018 Nokia Networks Intellectual Property. All rights reserved. + * Copyright (c) 2017-2019 European Software Marketing Ltd. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -17,6 +18,7 @@ * limitations under the License. * ============LICENSE_END========================================================= */ + package org.onap.aai.babel.xml.generator.model; import static org.hamcrest.core.Is.is; @@ -35,7 +37,6 @@ public class TestGeneratorUtil { @Test public void shouldEncodeUsingBase64() { byte[] expected = Base64.getEncoder().encode(TEST_BYTES); - byte[] result = GeneratorUtil.encode(TEST_BYTES); assertThat(result, is(expected));