1
0
Fork 0

test fixed

master
cesar 2019-11-27 21:26:33 -03:00 committed by Emily Kager
parent 6cda430cdd
commit 63cf034bfb
1 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@ import org.robolectric.RobolectricTestRunner
import org.robolectric.annotation.Config
import mozilla.components.concept.storage.BookmarkNode
import mozilla.components.concept.storage.BookmarkNodeType
import java.util.UUID
@RunWith(RobolectricTestRunner::class)
@Config(application = TestApplication::class)
@ -84,7 +85,7 @@ class BookmarkNodeTest {
private fun newBookmarkNode(title: String, position: Int, children: List<BookmarkNode>?) = BookmarkNode(
type = BookmarkNodeType.ITEM,
guid = "11",
guid = UUID.randomUUID().toString(),
parentGuid = "12",
position = position,
title = title,