params: update AthenadPid to use integer type (#35871)

* params: update `AthenadPid` to use integer type

* fix type
This commit is contained in:
Jason Wen
2025-08-01 12:29:25 -04:00
committed by GitHub
parent 2e4de9b7d8
commit f5991caf6f
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -37,9 +37,9 @@ class TestParams:
def test_params_two_things(self):
self.params.put("DongleId", "bob")
self.params.put("AthenadPid", "123")
self.params.put("AthenadPid", 123)
assert self.params.get("DongleId") == "bob"
assert self.params.get("AthenadPid") == "123"
assert self.params.get("AthenadPid") == 123
def test_params_get_block(self):
def _delayed_writer():