=== modified file 'abrek/testdef.py'
@@ -23,7 +23,7 @@
import time
from commands import getstatusoutput
from datetime import datetime
-from uuid import uuid1
+from uuid import uuid4
from abrek import swprofile, hwprofile
from abrek.api import ITest
@@ -118,7 +118,7 @@
raise RuntimeError("no test runner defined for '%s'" %
self.testname)
config = get_config()
- uuid = str(uuid1())
+ uuid = str(uuid4())
installdir = os.path.join(config.installdir, self.testname)
resultname = (self.testname +
str(time.mktime(datetime.utcnow().timetuple())))
=== modified file 'tests/test_dashboard.py'
@@ -15,7 +15,7 @@
import json
import os
-from uuid import uuid1
+from uuid import uuid4
from abrek.dashboard import (
DashboardConfig,
cmd_dashboard,
@@ -174,7 +174,7 @@
Make a fake set of test results for the stream test
"""
testname = "stream000"
- testuuid = str(uuid1())
+ testuuid = str(uuid4())
testdata_data = """
{
"format": "Dashboard Bundle Format 1.2",