I am having only mapper class that creates files for bulk loading into HBase and I have written a MRUnit for Unit testing.
Though the expected result and the retruned results are same, the MRUnit is failing with the message "Missing expected output".
Expected output: (4b 65 79 31, {"totalColumns":1,"families":{"default":[{"timestamp":9223372036854775807,"qualifier":"default","vlen":6}]},"row":"Key1"})
Actual output: (4b 65 79 31, {"totalColumns":1,"families":{"default":[{"timestamp":9223372036854775807,"qualifier":"default","vlen":6}]},"row":"Key1"})
Where am I going wrong ? Is it problem with ImmutableBytesWritable Or Put ?