Remove suffix "JSON" from Nova v3 API last test class

We have decided that XML support is removed from Nova v3 API and
the tests also has been removed from Tempest already.
Then the suffix "JSON" of Nova v3 API test classes does not have
any meanings.

This patch removes them for cleanup. This is made because of a
comment of Ie3c595fb77143e58e30404c42f358d6443a52c0b .

NOTE: Most of the test classes already don't have the suffix
"JSON" with this: Ic7372817777256ce723843ffd3e0bc670261aa78 .
This is the last one of having the suffix "JSON" of Nova v3 API
test class.

Part of bp:remove-v3-xml-api

Change-Id: I6ce769eaed89ef46f0c488ab99b5ed674f2f53a2
diff --git a/tempest/api/compute/v3/servers/test_server_metadata_negative.py b/tempest/api/compute/v3/servers/test_server_metadata_negative.py
index 4062696..2c413db 100644
--- a/tempest/api/compute/v3/servers/test_server_metadata_negative.py
+++ b/tempest/api/compute/v3/servers/test_server_metadata_negative.py
@@ -18,12 +18,12 @@
 from tempest import test
 
 
-class ServerMetadataV3NegativeTestJSON(base.BaseV3ComputeTest):
+class ServerMetadataV3NegativeTest(base.BaseV3ComputeTest):
     _interface = 'json'
 
     @classmethod
     def setUpClass(cls):
-        super(ServerMetadataV3NegativeTestJSON, cls).setUpClass()
+        super(ServerMetadataV3NegativeTest, cls).setUpClass()
         cls.client = cls.servers_client
         cls.quotas = cls.quotas_client
         cls.admin_client = cls._get_identity_admin_client()