Skip to content

Commit

Permalink
gh-2421: More fixes for bug hunt
Browse files Browse the repository at this point in the history
  • Loading branch information
t92549 committed Sep 17, 2021
1 parent d3b15b0 commit fe04eba
Showing 1 changed file with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/*
* Copyright 2021 Crown Copyright
*
* 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package uk.gov.gchq.gaffer.federatedstore;

import org.junit.Assert;
Expand Down Expand Up @@ -28,7 +43,6 @@
import uk.gov.gchq.gaffer.types.TypeSubTypeValue;
import uk.gov.gchq.gaffer.user.User;

import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;

Expand Down Expand Up @@ -249,7 +263,6 @@ public void testGetAllElementsNoViewFromAccumulo() throws Exception {

Assert.assertEquals(1, list.size());
Assert.assertEquals(EDGE, list.get(0));
// FAIL: Json result lacks a "matchedVertex"
Assert.assertEquals(EXPECTED, new String(JSONSerialiser.serialise(list.get(0), true)));
}

Expand Down

0 comments on commit fe04eba

Please sign in to comment.