Skip to content
This repository was archived by the owner on Jun 6, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2023 Crown Copyright
* Copyright 2017-2024 Crown Copyright
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -95,7 +95,9 @@ public void shouldConsumeGraph() {
final GraphSerialisable result = new GraphSerialisable.Builder(graph).build();

// When / Then
assertThat(result).isEqualTo(expected);
assertThat(result.getSerialisedConfig()).isEqualTo(expected.getSerialisedConfig());
assertThat(result.getSerialisedSchema()).isEqualTo(expected.getSerialisedSchema());
assertThat(result.getStoreProperties()).isEqualTo(expected.getStoreProperties());
}

@Test
Expand Down