Test stabilization: Reduced range of random number because to large numbers will cause the test to be flanky on CI env.
This commit is contained in:
parent
ab4e03f0ab
commit
8f713a96a2
1 changed files with 1 additions and 1 deletions
|
@ -353,7 +353,7 @@ class AgentTicketTagTest < TestCase
|
|||
end
|
||||
|
||||
def test_b_tags
|
||||
tag_prefix = "tag#{rand(999_999_999)}"
|
||||
tag_prefix = "tag#{rand(1000)}"
|
||||
|
||||
@browser = browser_instance
|
||||
login(
|
||||
|
|
Loading…
Reference in a new issue