commit | 151a0c15526c01598e9ff700a396ff66142633af | [log] [tgz] |
---|---|---|
author | Tres Seaver <tseaver@palladion.com> | Wed Oct 17 15:31:54 2018 -0400 |
committer | GitHub <noreply@github.com> | Wed Oct 17 15:31:54 2018 -0400 |
tree | ac6da4ccf561f4d26f04fe0dea16d11932a1fbf8 | |
parent | 15c0222f259677fd6384f05ee0fce5a513ae6071 [diff] |
Fix import order, appeasing lint. (#6240) Error left from PR #6211, when Kokoro was blithely skipping tests.
diff --git a/tests/unit/test_bidi.py b/tests/unit/test_bidi.py index a377706..95af044 100644 --- a/tests/unit/test_bidi.py +++ b/tests/unit/test_bidi.py
@@ -20,8 +20,8 @@ import pytest from six.moves import queue -from google.api_core import exceptions from google.api_core import bidi +from google.api_core import exceptions class Test_RequestQueueGenerator(object):