From 77d156dde9dd9e54fb9636c60cb62c4b837944cd Mon Sep 17 00:00:00 2001 From: BryceGattis Date: Fri, 10 May 2024 08:03:04 -0500 Subject: [PATCH] Add TODO Signed-off-by: BryceGattis --- src/rez/tests/test_context.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rez/tests/test_context.py b/src/rez/tests/test_context.py index 225f08e46..fcd778879 100644 --- a/src/rez/tests/test_context.py +++ b/src/rez/tests/test_context.py @@ -283,6 +283,7 @@ def solver_callback(solver_state: SolverState): callback = ResolvedContext.Callback(max_fails=999, time_limit=0, callback=solver_callback, buf=sys.stdout) solve_state = SolverState(3, 1, None) + # TODO: Can't seem to get this mock to work for some reason. # Mock start time to be Jan 1, 1970. with unittest.mock.patch('rez.resolved_context.ResolvedContext.Callback.start_time', new_callable=unittest.mock.PropertyMock, return_value=0):