summaryrefslogtreecommitdiffstats
path: root/htesting
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-10-09 10:00:50 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-10-09 18:02:43 +0200
commit506820435cacb39ce7bb1835f46a15e913b95828 (patch)
treee4a7e7a07232fe3c32da831d1f2049ead00d5095 /htesting
parent49972d07925604fea45afe1ace7b5dcc6efc30bf (diff)
lang/i18n: Fix for language code case issue with pt-br etc.
Fixes #7804
Diffstat (limited to 'htesting')
-rw-r--r--htesting/test_helpers.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/htesting/test_helpers.go b/htesting/test_helpers.go
index 3804f28fe..599e460f6 100644
--- a/htesting/test_helpers.go
+++ b/htesting/test_helpers.go
@@ -51,10 +51,11 @@ func BailOut(after time.Duration) {
}
-var rnd = rand.New(rand.NewSource(time.Now().UnixNano()))
+// Rnd is used only for testing.
+var Rnd = rand.New(rand.NewSource(time.Now().UnixNano()))
-func RandIntn(n int) int {
- return rnd.Intn(n)
+func RandBool() bool {
+ return Rnd.Intn(2) != 0
}
// DiffStringSlices returns the difference between two string slices.