Skip to content

Commit

Permalink
release diabled test back (Azure#7865)
Browse files Browse the repository at this point in the history
  • Loading branch information
mssfang authored and srnagar committed Feb 4, 2020
1 parent b0c40d1 commit 109f94e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,6 @@ public void listRevisionsAcceptDateTime() {
.verifyComplete();
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of revisions, we can list the revisions ConfigurationSettings using pagination
* (ie. where 'nextLink' has a URL pointing to the next page of results.)
Expand All @@ -752,7 +751,6 @@ public void listRevisionsWithPagination() {
.verifyComplete();
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of revisions, we can list the revisions ConfigurationSettings using pagination and stream is invoked multiple times.
* (ie. where 'nextLink' has a URL pointing to the next page of results.)
Expand Down Expand Up @@ -783,7 +781,6 @@ public void listRevisionsWithPaginationAndRepeatStream() {
assertEquals(numberExpected, configurationSettingList2.size());
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of revisions, we can list the revisions ConfigurationSettings using pagination and stream is invoked multiple times.
* (ie. where 'nextLink' has a URL pointing to the next page of results.)
Expand Down Expand Up @@ -814,7 +811,6 @@ public void listRevisionsWithPaginationAndRepeatIterator() {
assertEquals(numberExpected, configurationSettingList2.size());
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of existing settings, we can list the ConfigurationSettings using pagination
* (ie. where 'nextLink' has a URL pointing to the next page of results.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,6 @@ public void listRevisionsAcceptDateTime() {
assertConfigurationEquals(original, revisions.get(1));
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of revisions, we can list the revisions ConfigurationSettings using pagination
* (ie. where 'nextLink' has a URL pointing to the next page of results.)
Expand All @@ -559,7 +558,6 @@ public void listRevisionsWithPagination() {
assertEquals(numberExpected, client.listRevisions(filter).stream().collect(Collectors.toList()).size());
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of revisions, we can process {@link java.util.stream.Stream} multiple time and get same result.
* (ie. where 'nextLink' has a URL pointing to the next page of results.)
Expand All @@ -578,7 +576,6 @@ public void listRevisionsWithPaginationAndRepeatStream() {
assertEquals(numberExpected, configurationSettingPagedIterable.stream().collect(Collectors.toList()).size());
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of revisions, we can iterate over multiple time and get same result.
* (ie. where 'nextLink' has a URL pointing to the next page of results.)
Expand All @@ -605,7 +602,6 @@ public void listRevisionsWithPaginationAndRepeatIterator() {
equalsArray(configurationSettingList1, configurationSettingList2);
}

@Disabled("reactor netty aggregate method aggregate random order of context. Tracking issue #7771")
/**
* Verifies that, given a ton of existing settings, we can list the ConfigurationSettings using pagination
* (ie. where 'nextLink' has a URL pointing to the next page of results.)
Expand Down

0 comments on commit 109f94e

Please sign in to comment.