Skip to content
This repository has been archived by the owner on Jul 7, 2020. It is now read-only.

Test: Specify hash64 #127

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void testHash64ByteArrayOverload() {
String input = "hashthis";
byte[] inputBytes = input.getBytes();

long hashOfString = MurmurHash.hash64(input);
long hashOfString = -8896273065425798843L;
assertEquals("MurmurHash.hash64(byte[]) did not match MurmurHash.hash64(String)",
hashOfString, MurmurHash.hash64(inputBytes));

Expand Down