Skip to content

Commit

Permalink
unit test 2
Browse files Browse the repository at this point in the history
  • Loading branch information
MatiasMass committed Jun 11, 2023
1 parent fb3d574 commit c7725af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

app = Flask(__name__)

message = "Flask is working!"
message = "Flask is working!!"
# Define the root route
@app.route('/')
def index():
Expand Down
2 changes: 1 addition & 1 deletion test.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def test_data():
<title>Ingenieria Software CI</title>
</head>
<body>
<h1>Flask is working!</h1>
<h1>Flask is working!!</h1>
</body>
</html>"""
assert response.data.strip() == expected.strip()
Expand Down

0 comments on commit c7725af

Please sign in to comment.