Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Florents-Tselai committed Jun 23, 2024
1 parent 0a3e01c commit ce87843
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,7 @@ def fresh_db_path(db_path):
@pytest.fixture
def existing_db_path(fresh_db_path):
db = Database(fresh_db_path)
table = db.create_table(
"prompts",
{"prompt": str, "generated": str}
)
table = db.create_table("prompts", {"prompt": str, "generated": str})

table.insert({"prompt": "hello world!"})
table.insert({"prompt": "how are you?"})
Expand Down

0 comments on commit ce87843

Please sign in to comment.