diff options
author | Bjørn Erik Pedersen <[email protected]> | 2020-10-09 10:00:50 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2020-10-09 18:02:43 +0200 |
commit | 506820435cacb39ce7bb1835f46a15e913b95828 (patch) | |
tree | e4a7e7a07232fe3c32da831d1f2049ead00d5095 /htesting | |
parent | 49972d07925604fea45afe1ace7b5dcc6efc30bf (diff) | |
download | hugo-506820435cacb39ce7bb1835f46a15e913b95828.tar.gz hugo-506820435cacb39ce7bb1835f46a15e913b95828.zip |
lang/i18n: Fix for language code case issue with pt-br etc.
Fixes #7804
Diffstat (limited to 'htesting')
-rw-r--r-- | htesting/test_helpers.go | 7 |
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. |