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 @@ -14,6 +14,7 @@
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.mockito.Mock;
import org.mockito.Mockito;
Expand Down Expand Up @@ -98,6 +99,7 @@ void autoCompletesNoAutoRenew() {
/**
* Verifies that all messages are emitted downstream.
*/
@Disabled("Fails on Ubuntu 18")
@Test
void autoCompletesAndAutoRenews() {
// Arrange
Expand Down Expand Up @@ -159,6 +161,7 @@ void emitsDoesNotAutoCompleteOrRenew() {
/**
* When the max auto-renewal time has elapsed, we throw an error.
*/
@Disabled("Fails on Ubuntu 18")
@Test
void autoRenewExpires() {
// Arrange
Expand Down Expand Up @@ -204,6 +207,7 @@ void autoRenewExpires() {
/**
* When an error occurs in auto-renew lock we stop processing the next items.
*/
@Disabled("Fails on Ubuntu 18")
@Test
void autoRenewOperationErrors() {
// Arrange
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.mockito.ArgumentCaptor;
import org.mockito.Captor;
Expand Down Expand Up @@ -278,6 +279,7 @@ void newLinkOnClose() {
/**
* Verifies that we can get the next AMQP link when the first one encounters a retryable error.
*/
@Disabled("Fails on Ubuntu 18")
@Test
void newLinkOnRetryableError() {
// Arrange
Expand Down Expand Up @@ -394,6 +396,7 @@ void noSubscribersWhenTerminated() {
/**
* Verifies it keeps trying to get a link and stops after retries are exhausted.
*/
@Disabled("Fails on Ubuntu 18")
@Test
void retriesUntilExhausted() {
// Arrange
Expand Down