You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The older function used to return 3 variables parameters,v,s like
return parameters,v,s
At the end of the function but for now the tests got updated and now it wants to get 5 variables returned to test the function. So the function here also needs to be updated to reflect that.
See the newer version of test it wants to unpack 5 values from the function in place of 3 as with the previous versions
This is the older code in this repo that returned 3 variables only. I have included the older version of test also here that wanted to unpack 3 variables.
The text was updated successfully, but these errors were encountered:
The older function used to return 3 variables
parameters,v,s
likereturn parameters,v,s
At the end of the function but for now the tests got updated and now it wants to get 5 variables returned to test the function. So the function here also needs to be updated to reflect that.
See the newer version of test it wants to unpack 5 values from the function in place of 3 as with the previous versions
This is the older code in this repo that returned 3 variables only. I have included the older version of test also here that wanted to unpack 3 variables.
The text was updated successfully, but these errors were encountered: