CSCI-GA-2820-SP24-003 / payments

NYU DevOps Payments Service Spring 2024
Apache License 2.0
2 stars 2 forks source link

Added Update Method #24

Closed bairixie closed 8 months ago

bairixie commented 8 months ago

Made the following changes: -Added update payment endpoint in 'routes.py' -Added test case for payment endpoint

nedjulius commented 8 months ago

also, one more thing: you shouldn't be working from a fork; you should work from a clone instead. do git clone git@github.com:CSCI-GA-2820-SP24-003/payments.git

bairixie commented 8 months ago

make sure you run make test and see if the tests pass with your changes

I run but the error shows "self.assertEqual(response.status_code, status.HTTP_201_CREATED) E AssertionError: 404 != 201" since we do not have post method right now