From 8178bc7eae232c5fb8713f236b7e153623e7d92f Mon Sep 17 00:00:00 2001 From: Aditya Goyal Date: Sat, 14 Feb 2026 15:29:08 -0500 Subject: [PATCH] Rollback change fixed --- practice_assessments/file_storage/test_simulation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/practice_assessments/file_storage/test_simulation.py b/practice_assessments/file_storage/test_simulation.py index 0862744..d0adf38 100644 --- a/practice_assessments/file_storage/test_simulation.py +++ b/practice_assessments/file_storage/test_simulation.py @@ -51,7 +51,7 @@ def test_group_3(self): def test_group_4(self): output = simulate_coding_framework(self.test_data_4) - self.assertEqual(output, ["uploaded at Initial.txt", "uploaded at Update1.txt", "got at Initial.txt", "copied at Update1.txt to Update1Copy.txt", "uploaded at Update2.txt", "rollback to 2021-07-01T12:10:00", "got at Update1.txt", "got at Initial.txt", "found at [Update1.txt, Update1Copy.txt, Update2.txt]", "got at Update2.txt"]) + self.assertEqual(output, ["uploaded at Initial.txt", "uploaded at Update1.txt", "got at Initial.txt", "copied at Update1.txt to Update1Copy.txt", "uploaded at Update2.txt", "rollback to 2021-07-01T12:10:00", "got at Update1.txt", "got at Initial.txt", "found at [Update1.txt]", "file not found"]) if __name__ == '__main__': unittest.main()