Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MothScientist committed Dec 12, 2024
1 parent 41d50e3 commit e37f587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion budget_graph/db_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ def get_group_transaction_uuid(self, group_id: int) -> str:
FROM
"budget_graph"."groups"
WHERE
"group_id" = %s::smallint""", (group_id,))
"id" = %s::smallint""", (group_id,))
return str(res[0]) if (res := cur.fetchone()) else ''

except (DatabaseError, TypeError) as err:
Expand Down

0 comments on commit e37f587

Please sign in to comment.