Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: scylladb/java-driver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7905ae06cb9ee5912b6c9f7a91536dcde8d82757
Choose a base ref
..
head repository: scylladb/java-driver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 23ce185f825ac9138c53ccf4533433a4d34638d7
Choose a head ref
Showing with 1 addition and 3 deletions.
  1. +1 −3 core/src/test/java/com/datastax/oss/driver/internal/core/ContactPointsTest.java
Original file line number Diff line number Diff line change
@@ -95,9 +95,7 @@ public void should_parse_host_and_port_in_configuration_and_create_unresolved()
Set<EndPoint> endPoints =
ContactPoints.merge(Collections.emptySet(), ImmutableList.of("localhost:9042"), false);

assertThat(endPoints)
.containsExactly(
new UnresolvedEndPoint("localhost", 9042));
assertThat(endPoints).containsExactly(new UnresolvedEndPoint("localhost", 9042));
}

@Test