diff --git a/tests/api2/test_rest_api.py b/tests/api2/test_rest_api.py deleted file mode 100644 index 4d4669f9c36ce..0000000000000 --- a/tests/api2/test_rest_api.py +++ /dev/null @@ -1,15 +0,0 @@ -# -*- coding=utf-8 -*- -import urllib.parse - -from middlewared.test.integration.utils import call - -import os -import sys -sys.path.append(os.getcwd()) -from functions import GET - - -def test_non_numeric_identifiers(): - disk = call('disk.query')[0] - results = GET(f'/disk/id/{urllib.parse.quote(disk["identifier"])}/') - assert results.status_code == 200, results.text