Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nagworld9 committed Sep 13, 2024
1 parent e958a76 commit 0f19b1b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/ga/test_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

from azurelinuxagent.common import conf
from azurelinuxagent.common.agent_supported_feature import get_agent_supported_features_list_for_crp
from azurelinuxagent.common.future import ustr
from azurelinuxagent.ga.cgroupconfigurator import CGroupConfigurator
from azurelinuxagent.common.datacontract import get_properties
from azurelinuxagent.common.event import WALAEventOperation
Expand Down Expand Up @@ -3534,9 +3535,9 @@ def test_unicode_values_for_boolean_fields_in_handler_manifest(self):
"updateCommand": "update_cmd",
"enableCommand": "enable_cmd",
"disableCommand": "disable_cmd",
"reportHeartbeat": u"true",
"continueOnUpdateFailure": u"true",
"supportsMultipleExtensions": u"true"
"reportHeartbeat": ustr("true"),
"continueOnUpdateFailure": ustr("true"),
"supportsMultipleExtensions": ustr("true")
}

manifest = HandlerManifest({'handlerManifest': handler_json})
Expand Down

0 comments on commit 0f19b1b

Please sign in to comment.