2017-01-14 01:05:42 +01:00
|
|
|
// Copyright 2016 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package time
|
|
|
|
|
|
|
|
func ForceAndroidTzdataForTest(tzdata bool) {
|
2018-01-09 02:23:08 +01:00
|
|
|
forceZipFileForTesting(false)
|
2017-01-14 01:05:42 +01:00
|
|
|
if tzdata {
|
2018-01-09 02:23:08 +01:00
|
|
|
zoneSources = zoneSources[:len(zoneSources)-1]
|
2017-01-14 01:05:42 +01:00
|
|
|
}
|
|
|
|
}
|