+ fixed test

This commit is contained in:
Costin Leau
2010-11-15 23:23:31 +01:00
parent a90379d39f
commit 8e0ac6ea9d

View File

@@ -17,7 +17,6 @@
package org.springframework.datastore.redis.connection;
import static org.junit.Assert.*;
import junit.framework.Assert;
import org.junit.After;
import org.junit.Before;
@@ -53,7 +52,7 @@ public abstract class AbstractConnectionIntegrationTests {
@Test
public void testSetAndGet() {
connection.set("foo".getBytes(), "blah blah".getBytes());
Assert.assertEquals("blah blah".getBytes(), connection.get("foo".getBytes()));
assertEquals("blah blah", new String(connection.get("foo".getBytes())));
}