Skip to content

Commit

Permalink
Fix test failure
Browse files Browse the repository at this point in the history
Update tests to account for new templates
  • Loading branch information
svilupp authored Nov 17, 2023
2 parents 0153efb + 7b0b620 commit 48aaa7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/templates.jl
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ end
# Search for multiple with :Task in name
tmps1 = aitemplates(:Task)
@test length(tmps1) >= 1
tmps2 = aitemplates("Task")
@test length(tmps2) == length(tmps1)
tmps2 = aitemplates("Task") # broader search
@test length(tmps2) >= length(tmps1)
# Search via regex
tmps = aitemplates(r"IMPARTIAL AI JUDGE"i)
@test length(tmps) >= 1
Expand Down

0 comments on commit 48aaa7d

Please sign in to comment.