Skip to content

Commit

Permalink
build: update extension version (#57)
Browse files Browse the repository at this point in the history
* Update __init__.py

* testing fix

---------

Co-authored-by: Victoria Hall <[email protected]>
  • Loading branch information
hallvictoria and Victoria Hall authored Jul 18, 2024
1 parent df56cdf commit 6174962
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@
"RequestSynchronizer",
]

__version__ = "1.0.0b1"
__version__ = "1.0.0b2"
3 changes: 2 additions & 1 deletion azurefunctions-extensions-base/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self, bindings: utils.Binding):


class MockInitParams(utils.Binding):
def __init__(self, name, direction, data_type, type, init_params):
def __init__(self, name, direction, data_type, type, init_params, path=None):
self.type = "blob"
self.name = name
self._direction = direction
Expand All @@ -30,6 +30,7 @@ def __init__(self, name, direction, data_type, type, init_params):
"type": self.type,
}
self.init_params = init_params
self.path = path


class TestUtils(unittest.TestCase):
Expand Down

0 comments on commit 6174962

Please sign in to comment.