Skip to content

Commit

Permalink
trigger test
Browse files Browse the repository at this point in the history
  • Loading branch information
donaltuohy committed Aug 21, 2024
1 parent 9a07ad8 commit ef79e4d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions e2e/function_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,10 @@ def test_function_run_with_initialization_error(self):
try:
self.evervault.run(FunctionTest.INITIALIZATION_ERROR_FUNCTION_NAME, {})
except FunctionRuntimeError as e:
print(e.message)
print(e.stack)
print("-----++++++--------++++++--------");
print(e)
print("-----++++++--------++++++--------");
# print(e.stack)
assert (
str(e)
== "The function failed to initialize. This error is commonly encountered when there are problems with the function code (e.g. a syntax error) or when a required import is missing."
Expand Down

0 comments on commit ef79e4d

Please sign in to comment.