mirror of
https://github.com/microsoft/qlib.git
synced 2026-06-06 05:51:17 +08:00
Fix typo. (#1365)
This commit is contained in:
@@ -25,9 +25,9 @@ class MLflowTest(unittest.TestCase):
|
||||
for i in range(10):
|
||||
_ = mlflow.tracking.MlflowClient(tracking_uri=str(self.TMP_PATH))
|
||||
end = time.time()
|
||||
elasped = end - start
|
||||
self.assertLess(elasped, 1e-2) # it can be done in less than 10ms
|
||||
print(elasped)
|
||||
elapsed = end - start
|
||||
self.assertLess(elapsed, 1e-2) # it can be done in less than 10ms
|
||||
print(elapsed)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
Reference in New Issue
Block a user