Skip to content

Commit a493594

Browse files
committed
fix test extension error
1 parent 03e3c29 commit a493594

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unittests/test_extension.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -696,8 +696,8 @@ def test_info_extension_is_enabled(self, info_mock: Mock):
696696
# Check logs
697697
self._instance._info_extension_is_enabled(sdk)
698698
info_mock.assert_called_once_with(
699-
'Python Worker Extension is enabled in azure.functions (%s).',
700-
'1.11.3b2'
699+
'Python Worker Extension is enabled in azure.functions '
700+
'(%s).', sdk.__version__
701701
)
702702

703703
@patch('azure_functions_worker.extension.logger.info')

0 commit comments

Comments
 (0)