fixed tests to work with new transactional items

This commit is contained in:
Jonas Boner 2009-04-28 21:47:42 +02:00
parent 21e7a6f4b8
commit 49f433b012
7 changed files with 24 additions and 22 deletions

View file

@ -83,7 +83,8 @@ class InMemoryTransactionalMap[K, V] extends TransactionalMap[K, V] {
*
* @author <a href="http://jonasboner.com">Jonas Bon&#233;r</a>
*/
class CassandraPersistentTransactionalMap(val actorName: String) extends PersistentTransactionalMap[String, String] {
class CassandraPersistentTransactionalMap(actorNameInstance: AnyRef) extends PersistentTransactionalMap[String, String] {
val actorName = actorNameInstance.getClass.getName
override def begin = {}
override def rollback = {}