fix spurious 400s produced by test
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@790486 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
de1cc3ec7b
commit
ceb0d5e68b
|
@ -317,7 +317,7 @@ public class TestRowResource extends MiniClusterTestCase {
|
|||
Thread.yield();
|
||||
|
||||
// make sure the fake row was not actually created
|
||||
response = client.get(path);
|
||||
response = client.get(path, MIMETYPE_XML);
|
||||
assertEquals(response.getCode(), 404);
|
||||
|
||||
// check that all of the values were created
|
||||
|
@ -349,7 +349,7 @@ public class TestRowResource extends MiniClusterTestCase {
|
|||
Thread.yield();
|
||||
|
||||
// make sure the fake row was not actually created
|
||||
response = client.get(path);
|
||||
response = client.get(path, MIMETYPE_PROTOBUF);
|
||||
assertEquals(response.getCode(), 404);
|
||||
|
||||
// check that all of the values were created
|
||||
|
|
Loading…
Reference in New Issue