Skip to content

Commit

Permalink
fix test function
Browse files Browse the repository at this point in the history
  • Loading branch information
rf-ife committed Nov 8, 2024
1 parent 9461af4 commit 6bafa66
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ def test_01_maintenance_equipment_sequence(self):
"""
# Create category
categ_1 = self.maintenance_equipment_categ_obj.create(
[{
"name": "Test Category",
"sequence_prefix": "TTC",
"sequence_number_next": 1,
}]
[
{
"name": "Test Category",
"sequence_prefix": "TTC",
"sequence_number_next": 1,
}
]
)[0]
seq_1 = self.sequence_obj.search(
[("name", "=", categ_1.name), ("prefix", "=", "TTC")], limit=1
Expand Down

0 comments on commit 6bafa66

Please sign in to comment.