We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5a255f commit fe0e843Copy full SHA for fe0e843
kubernetes_asyncio/watch/watch_test.py
@@ -162,8 +162,9 @@ async def test_unmarshall_k8s_error_response(self):
162
}
163
164
165
- with self.assertRaisesRegex(kubernetes_asyncio.client.exceptions.ApiException,
166
- '\(410\)\nReason: Gone: too old resource version: 1 \(8146471\)'):
+ with self.assertRaisesRegex(
+ kubernetes_asyncio.client.exceptions.ApiException,
167
+ r'\(410\)\nReason: Gone: too old resource version: 1 \(8146471\)'):
168
Watch().unmarshal_event(json.dumps(k8s_err), None)
169
170
def test_unmarshal_with_custom_object(self):
0 commit comments