Skip to content
Merged
Show file tree
Hide file tree
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
Expand Up @@ -13,8 +13,8 @@
*/
package io.trino.client.uri;

import com.google.common.collect.ImmutableList;
import org.junit.jupiter.api.Test;
import org.weakref.jmx.$internal.guava.collect.ImmutableList;

import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
Expand All @@ -23,6 +23,7 @@
import java.util.Properties;
import java.util.Set;

import static com.google.common.collect.ImmutableSet.toImmutableSet;
import static io.trino.client.uri.ConnectionProperties.SslVerificationMode.CA;
import static io.trino.client.uri.ConnectionProperties.SslVerificationMode.FULL;
import static io.trino.client.uri.ConnectionProperties.SslVerificationMode.NONE;
Expand All @@ -40,7 +41,6 @@
import static io.trino.client.uri.PropertyName.SSL_VERIFICATION;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;
import static org.weakref.jmx.$internal.guava.collect.ImmutableSet.toImmutableSet;

public class TestTrinoUri
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ private static StageStats createStageStats(int value)
Duration.succinctDuration(value, SECONDS),
Duration.succinctDuration(value, SECONDS),
false,
org.weakref.jmx.$internal.guava.collect.ImmutableSet.of(),
ImmutableSet.of(),
succinctBytes(value),
succinctBytes(value),
value,
Expand Down