diff --git a/CHANGES.txt b/CHANGES.txt index d6357188682..e1a858408b0 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -144,6 +144,7 @@ Release 0.19.0 - Unreleased HBASE-1026 Tests in mapred are failing HBASE-1020 Regionserver OOME handler should dump vital stats HBASE-1018 Regionservers should report detailed health to master + HBASE-1034 Remove useless TestToString unit test NEW FEATURES HBASE-875 Use MurmurHash instead of JenkinsHash [in bloomfilters] diff --git a/src/test/org/apache/hadoop/hbase/TestToString.java b/src/test/org/apache/hadoop/hbase/TestToString.java deleted file mode 100644 index 1ec2341aa0c..00000000000 --- a/src/test/org/apache/hadoop/hbase/TestToString.java +++ /dev/null @@ -1,36 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.hadoop.hbase; - -import junit.framework.TestCase; - -/** - * Tests toString methods. - */ -public class TestToString extends TestCase { - /** - * tests toString methods on HSeverAddress, HServerInfo - * @throws Exception - */ - public void testServerInfo() throws Exception { - final String hostport = "127.0.0.1:9999"; - HServerAddress address = new HServerAddress(hostport); - assertEquals("HServerAddress toString", address.toString(), hostport); - } -}