From: Neha Ojha Date: Wed, 30 Jun 2021 19:50:00 +0000 (+0000) Subject: pybind/mgr/progress/test_progress.py: fix type of reported_epoch X-Git-Tag: v16.2.7~84^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=419452f09c256c94eae40fe9a7a1857ac2578e75;p=ceph.git pybind/mgr/progress/test_progress.py: fix type of reported_epoch because reported_epoch is an int, not a string Signed-off-by: Neha Ojha (cherry picked from commit a8f3a0eb83653ce6b50aaccd43bdc456e6394484) --- diff --git a/src/pybind/mgr/progress/test_progress.py b/src/pybind/mgr/progress/test_progress.py index 2eab07fa39f4..9d39cbdd6840 100644 --- a/src/pybind/mgr/progress/test_progress.py +++ b/src/pybind/mgr/progress/test_progress.py @@ -38,7 +38,7 @@ class TestPgRecoveryEvent(object): 1 ], "pgid": "1.0", - "reported_epoch": "30" + "reported_epoch": 30 }, { "state": "active+clean", @@ -55,7 +55,7 @@ class TestPgRecoveryEvent(object): 1 ], "pgid": "1.1", - "reported_epoch": "30" + "reported_epoch": 30 }, { "state": "active+clean", @@ -72,7 +72,7 @@ class TestPgRecoveryEvent(object): 1 ], "pgid": "1.2", - "reported_epoch": "30" + "reported_epoch": 30 } ] }