We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 471ca5a commit 9c66b06Copy full SHA for 9c66b06
1 file changed
tests/test_flows/test_flow.py
@@ -3,7 +3,7 @@
3
import hashlib
4
import re
5
import sys
6
-from time import time
+import time
7
8
if sys.version_info[0] >= 3:
9
from unittest import mock
@@ -71,7 +71,7 @@ def test_tagging(self):
71
flow_list = openml.flows.list_flows(size=1)
72
flow_id = list(flow_list.keys())[0]
73
flow = openml.flows.get_flow(flow_id)
74
- tag = "testing_tag_{}_{}".format(self.id(), time())
+ tag = "testing_tag_{}_{}".format(self.id(), time.time())
75
flow_list = openml.flows.list_flows(tag=tag)
76
self.assertEqual(len(flow_list), 0)
77
flow.push_tag(tag)
0 commit comments