Skip to content

Commit

Permalink
Merge pull request #55 from hcp-uw/StartingEndpoint
Browse files Browse the repository at this point in the history
update starting endpoint
  • Loading branch information
davidye007 authored Jul 18, 2024
2 parents 55d40d3 + 3b6d934 commit e8c4ba3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/backend/server_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
# Start Endpoint
@app.route('/')
def hello():
return "Hello and welcome to the Receipt Plus API!!!"
return "Hello and welcome to the Receipt Plus API!!!!!"

# Initialize firebase admin SDK app
cred = credentials.Certificate(app.config['FIRESTORE_KEY'])
Expand Down
2 changes: 1 addition & 1 deletion tests/test_server_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def client():

def test_start_endpoint(client):
response = client.get('/')
assert response.data.decode('utf-8') == "Hello and welcome to the Receipt Plus API!!!"
assert response.data.decode('utf-8') == "Hello and welcome to the Receipt Plus API!!!!!"

def test_register_successful_or_fail(client, global_variables):
new_user = {
Expand Down

0 comments on commit e8c4ba3

Please sign in to comment.