Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove a bad async chexify test as the following is not guaranteed: #353

Merged
merged 1 commit into from
May 10, 2024

Conversation

copybara-service[bot]
Copy link

Remove a bad async chexify test as the following is not guaranteed:

async_check(invalid_x)  # enqueued and immediately returned
# error is not ready yet, so no assertion raised
async_check(valid_x).block_until_ready()

When we call the second async_check on a valid array, the error from the first call could be ready.

```
async_check(invalid_x)  # enqueued and immediately returned
# error is not ready yet, so no assertion raised
async_check(valid_x).block_until_ready()
```
When we call the second async_check on a valid array, the error from the first call could be ready.

PiperOrigin-RevId: 632517810
@copybara-service copybara-service bot merged commit 9d96356 into master May 10, 2024
@copybara-service copybara-service bot deleted the test_632298066 branch May 10, 2024 16:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant