Skip to content

Commit

Permalink
Update DefaultHttpSenderTest.java
Browse files Browse the repository at this point in the history
Fix Linter reported issue
  • Loading branch information
ecararus authored Oct 30, 2023
1 parent 317dfe5 commit 23c601a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
import java.util.Map;

import io.aiven.kafka.connect.http.config.HttpMethodsType;
import org.apache.kafka.connect.errors.ConnectException;

import io.aiven.kafka.connect.http.config.HttpSinkConfig;

import org.apache.kafka.connect.errors.ConnectException;
import org.assertj.core.api.InstanceOfAssertFactories;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
Expand Down Expand Up @@ -105,7 +105,7 @@ void shouldBuildDefaultHttpRequest() throws Exception {
@Test
void shouldBuildDefaultHttpPutRequest() throws Exception {
final var configBase = new HashMap<>(defaultConfig());
configBase.put( "http.method", "PUT");
configBase.put("http.method", "PUT");

// Build the configuration
final HttpSinkConfig config = new HttpSinkConfig(configBase);
Expand Down

0 comments on commit 23c601a

Please sign in to comment.