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