8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bd84e6 commit a99d800Copy full SHA for a99d800
influxdb/tests/server_tests/client_test_with_server.py
@@ -604,16 +604,6 @@ def test_drop_retention_policy(self):
604
rsp
605
)
606
607
- def test_drop_retention_policy_default(self):
608
- # Test drop default retention
609
- with self.assertRaises(InfluxDBClientError) as ctx:
610
- self.cli.drop_retention_policy('default', 'db')
611
-
612
- self.assertEqual(400, ctx.exception.code)
613
- self.assertIn(
614
- '{"error":"error parsing query: found DEFAULT, expected POLICY',
615
- ctx.exception.content)
616
617
def test_issue_143(self):
618
pt = partial(point, 'a_serie_name', timestamp='2015-03-30T16:16:37Z')
619
pts = [
0 commit comments