Skip to content

Commit

Permalink
formatting issue fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ryansurf committed Oct 21, 2024
1 parent f7f9676 commit 6ca3264
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/test_gpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ def test_simple_gpt():
"""

surf_summary = (
"Please respond with the exact phrase 'gpt works'. "
"Do not include any additional text or context."
)
"Please respond with the exact phrase 'gpt works'. "
"Do not include any additional text or context."
)

gpt_prompt = "This is for testing purposes"
gpt_response = gpt.simple_gpt(surf_summary, gpt_prompt)
expected_response = "gpt works"

assert gpt_response == expected_response, (
f"Expected '{expected_response}', but got: {gpt_response}"
)
assert (
gpt_response == expected_response
), f"Expected '{expected_response}', but got: {gpt_response}"

0 comments on commit 6ca3264

Please sign in to comment.