diff --git a/src/restic/snapshot_filter_test.go b/src/restic/snapshot_filter_test.go index 7a902a687..07d2e106d 100644 --- a/src/restic/snapshot_filter_test.go +++ b/src/restic/snapshot_filter_test.go @@ -12,34 +12,34 @@ import ( ) func parseTime(s string) time.Time { - t, err := time.Parse("2006-01-02 15:04:05 -0700", s) + t, err := time.Parse("2006-01-02 15:04:05", s) if err != nil { panic(err) } - return t.Local() + return t.UTC() } var testFilterSnapshots = Snapshots{ - {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-01 01:02:03 +0100"), Paths: []string{"/usr", "/bin"}}, - {Hostname: "bar", Username: "testuser", Time: parseTime("2016-01-01 01:03:03 +0100"), Paths: []string{"/usr", "/bin"}}, - {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-03 07:02:03 +0100"), Paths: []string{"/usr", "/bin"}}, - {Hostname: "bar", Username: "testuser", Time: parseTime("2016-01-01 07:08:03 +0100"), Paths: []string{"/usr", "/bin"}}, - {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-04 10:23:03 +0100"), Paths: []string{"/usr", "/bin"}}, - {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-04 11:23:03 +0100"), Paths: []string{"/usr", "/bin"}}, - {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-04 12:23:03 +0100"), Paths: []string{"/usr", "/bin"}}, - {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-04 12:24:03 +0100"), Paths: []string{"/usr", "/bin"}}, - {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-04 12:28:03 +0100"), Paths: []string{"/usr", "/bin"}}, - {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-04 12:30:03 +0100"), Paths: []string{"/usr", "/bin"}}, - {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-04 16:23:03 +0100"), Paths: []string{"/usr", "/bin"}}, - {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-05 09:02:03 +0100"), Paths: []string{"/usr", "/bin"}}, - {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-06 08:02:03 +0100"), Paths: []string{"/usr", "/bin"}}, - {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-07 10:02:03 +0100"), Paths: []string{"/usr", "/bin"}}, - {Hostname: "foo", Username: "root", Time: parseTime("2016-01-08 20:02:03 +0100"), Paths: []string{"/usr", "/sbin"}}, - {Hostname: "foo", Username: "root", Time: parseTime("2016-01-09 21:02:03 +0100"), Paths: []string{"/usr", "/sbin"}}, - {Hostname: "bar", Username: "root", Time: parseTime("2016-01-12 21:02:03 +0100"), Paths: []string{"/usr", "/sbin"}}, - {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-12 21:08:03 +0100"), Paths: []string{"/usr", "/bin"}}, - {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-18 12:02:03 +0100"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-01 01:02:03"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "bar", Username: "testuser", Time: parseTime("2016-01-01 01:03:03"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-03 07:02:03"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "bar", Username: "testuser", Time: parseTime("2016-01-01 07:08:03"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-04 10:23:03"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-04 11:23:03"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-04 12:23:03"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-04 12:24:03"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-04 12:28:03"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-04 12:30:03"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-04 16:23:03"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-05 09:02:03"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-06 08:02:03"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-07 10:02:03"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "foo", Username: "root", Time: parseTime("2016-01-08 20:02:03"), Paths: []string{"/usr", "/sbin"}}, + {Hostname: "foo", Username: "root", Time: parseTime("2016-01-09 21:02:03"), Paths: []string{"/usr", "/sbin"}}, + {Hostname: "bar", Username: "root", Time: parseTime("2016-01-12 21:02:03"), Paths: []string{"/usr", "/sbin"}}, + {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-12 21:08:03"), Paths: []string{"/usr", "/bin"}}, + {Hostname: "foo", Username: "testuser", Time: parseTime("2016-01-18 12:02:03"), Paths: []string{"/usr", "/bin"}}, } var filterTests = []SnapshotFilter{ @@ -87,105 +87,105 @@ func TestFilterSnapshots(t *testing.T) { } var testExpireSnapshots = Snapshots{ - {Time: parseTime("2014-09-01 10:20:30 +0100")}, - {Time: parseTime("2014-09-02 10:20:30 +0100")}, - {Time: parseTime("2014-09-05 10:20:30 +0100")}, - {Time: parseTime("2014-09-06 10:20:30 +0100")}, - {Time: parseTime("2014-09-08 10:20:30 +0100")}, - {Time: parseTime("2014-09-09 10:20:30 +0100")}, - {Time: parseTime("2014-09-10 10:20:30 +0100")}, - {Time: parseTime("2014-09-11 10:20:30 +0100")}, - {Time: parseTime("2014-09-20 10:20:30 +0100")}, - {Time: parseTime("2014-09-22 10:20:30 +0100")}, - {Time: parseTime("2014-08-08 10:20:30 +0100")}, - {Time: parseTime("2014-08-10 10:20:30 +0100")}, - {Time: parseTime("2014-08-12 10:20:30 +0100")}, - {Time: parseTime("2014-08-13 10:20:30 +0100")}, - {Time: parseTime("2014-08-13 10:20:30 +0100")}, - {Time: parseTime("2014-08-15 10:20:30 +0100")}, - {Time: parseTime("2014-08-18 10:20:30 +0100")}, - {Time: parseTime("2014-08-20 10:20:30 +0100")}, - {Time: parseTime("2014-08-21 10:20:30 +0100")}, - {Time: parseTime("2014-08-22 10:20:30 +0100")}, - {Time: parseTime("2014-10-01 10:20:30 +0100")}, - {Time: parseTime("2014-10-02 10:20:30 +0100")}, - {Time: parseTime("2014-10-05 10:20:30 +0100")}, - {Time: parseTime("2014-10-06 10:20:30 +0100")}, - {Time: parseTime("2014-10-08 10:20:30 +0100")}, - {Time: parseTime("2014-10-09 10:20:30 +0100")}, - {Time: parseTime("2014-10-10 10:20:30 +0100")}, - {Time: parseTime("2014-10-11 10:20:30 +0100")}, - {Time: parseTime("2014-10-20 10:20:30 +0100")}, - {Time: parseTime("2014-10-22 10:20:30 +0100")}, - {Time: parseTime("2014-11-08 10:20:30 +0100")}, - {Time: parseTime("2014-11-10 10:20:30 +0100")}, - {Time: parseTime("2014-11-12 10:20:30 +0100")}, - {Time: parseTime("2014-11-13 10:20:30 +0100")}, - {Time: parseTime("2014-11-13 10:20:30 +0100")}, - {Time: parseTime("2014-11-15 10:20:30 +0100")}, - {Time: parseTime("2014-11-18 10:20:30 +0100")}, - {Time: parseTime("2014-11-20 10:20:30 +0100")}, - {Time: parseTime("2014-11-21 10:20:30 +0100")}, - {Time: parseTime("2014-11-22 10:20:30 +0100")}, - {Time: parseTime("2015-09-01 10:20:30 +0100")}, - {Time: parseTime("2015-09-02 10:20:30 +0100")}, - {Time: parseTime("2015-09-05 10:20:30 +0100")}, - {Time: parseTime("2015-09-06 10:20:30 +0100")}, - {Time: parseTime("2015-09-08 10:20:30 +0100")}, - {Time: parseTime("2015-09-09 10:20:30 +0100")}, - {Time: parseTime("2015-09-10 10:20:30 +0100")}, - {Time: parseTime("2015-09-11 10:20:30 +0100")}, - {Time: parseTime("2015-09-20 10:20:30 +0100")}, - {Time: parseTime("2015-09-22 10:20:30 +0100")}, - {Time: parseTime("2015-08-08 10:20:30 +0100")}, - {Time: parseTime("2015-08-10 10:20:30 +0100")}, - {Time: parseTime("2015-08-12 10:20:30 +0100")}, - {Time: parseTime("2015-08-13 10:20:30 +0100")}, - {Time: parseTime("2015-08-13 10:20:30 +0100")}, - {Time: parseTime("2015-08-15 10:20:30 +0100")}, - {Time: parseTime("2015-08-18 10:20:30 +0100")}, - {Time: parseTime("2015-08-20 10:20:30 +0100")}, - {Time: parseTime("2015-08-21 10:20:30 +0100")}, - {Time: parseTime("2015-08-22 10:20:30 +0100")}, - {Time: parseTime("2015-10-01 10:20:30 +0100")}, - {Time: parseTime("2015-10-02 10:20:30 +0100")}, - {Time: parseTime("2015-10-05 10:20:30 +0100")}, - {Time: parseTime("2015-10-06 10:20:30 +0100")}, - {Time: parseTime("2015-10-08 10:20:30 +0100")}, - {Time: parseTime("2015-10-09 10:20:30 +0100")}, - {Time: parseTime("2015-10-10 10:20:30 +0100")}, - {Time: parseTime("2015-10-11 10:20:30 +0100")}, - {Time: parseTime("2015-10-20 10:20:30 +0100")}, - {Time: parseTime("2015-10-22 10:20:30 +0100")}, - {Time: parseTime("2015-11-08 10:20:30 +0100")}, - {Time: parseTime("2015-11-10 10:20:30 +0100")}, - {Time: parseTime("2015-11-12 10:20:30 +0100")}, - {Time: parseTime("2015-11-13 10:20:30 +0100")}, - {Time: parseTime("2015-11-13 10:20:30 +0100")}, - {Time: parseTime("2015-11-15 10:20:30 +0100")}, - {Time: parseTime("2015-11-18 10:20:30 +0100")}, - {Time: parseTime("2015-11-20 10:20:30 +0100")}, - {Time: parseTime("2015-11-21 10:20:30 +0100")}, - {Time: parseTime("2015-11-22 10:20:30 +0100")}, - {Time: parseTime("2016-01-01 01:02:03 +0100")}, - {Time: parseTime("2016-01-01 01:03:03 +0100")}, - {Time: parseTime("2016-01-01 07:08:03 +0100")}, - {Time: parseTime("2016-01-03 07:02:03 +0100")}, - {Time: parseTime("2016-01-04 10:23:03 +0100")}, - {Time: parseTime("2016-01-04 11:23:03 +0100")}, - {Time: parseTime("2016-01-04 12:23:03 +0100")}, - {Time: parseTime("2016-01-04 12:24:03 +0100")}, - {Time: parseTime("2016-01-04 12:28:03 +0100")}, - {Time: parseTime("2016-01-04 12:30:03 +0100")}, - {Time: parseTime("2016-01-04 16:23:03 +0100")}, - {Time: parseTime("2016-01-05 09:02:03 +0100")}, - {Time: parseTime("2016-01-06 08:02:03 +0100")}, - {Time: parseTime("2016-01-07 10:02:03 +0100")}, - {Time: parseTime("2016-01-08 20:02:03 +0100")}, - {Time: parseTime("2016-01-09 21:02:03 +0100")}, - {Time: parseTime("2016-01-12 21:02:03 +0100")}, - {Time: parseTime("2016-01-12 21:08:03 +0100")}, - {Time: parseTime("2016-01-18 12:02:03 +0100")}, + {Time: parseTime("2014-09-01 10:20:30")}, + {Time: parseTime("2014-09-02 10:20:30")}, + {Time: parseTime("2014-09-05 10:20:30")}, + {Time: parseTime("2014-09-06 10:20:30")}, + {Time: parseTime("2014-09-08 10:20:30")}, + {Time: parseTime("2014-09-09 10:20:30")}, + {Time: parseTime("2014-09-10 10:20:30")}, + {Time: parseTime("2014-09-11 10:20:30")}, + {Time: parseTime("2014-09-20 10:20:30")}, + {Time: parseTime("2014-09-22 10:20:30")}, + {Time: parseTime("2014-08-08 10:20:30")}, + {Time: parseTime("2014-08-10 10:20:30")}, + {Time: parseTime("2014-08-12 10:20:30")}, + {Time: parseTime("2014-08-13 10:20:30")}, + {Time: parseTime("2014-08-13 10:20:30")}, + {Time: parseTime("2014-08-15 10:20:30")}, + {Time: parseTime("2014-08-18 10:20:30")}, + {Time: parseTime("2014-08-20 10:20:30")}, + {Time: parseTime("2014-08-21 10:20:30")}, + {Time: parseTime("2014-08-22 10:20:30")}, + {Time: parseTime("2014-10-01 10:20:30")}, + {Time: parseTime("2014-10-02 10:20:30")}, + {Time: parseTime("2014-10-05 10:20:30")}, + {Time: parseTime("2014-10-06 10:20:30")}, + {Time: parseTime("2014-10-08 10:20:30")}, + {Time: parseTime("2014-10-09 10:20:30")}, + {Time: parseTime("2014-10-10 10:20:30")}, + {Time: parseTime("2014-10-11 10:20:30")}, + {Time: parseTime("2014-10-20 10:20:30")}, + {Time: parseTime("2014-10-22 10:20:30")}, + {Time: parseTime("2014-11-08 10:20:30")}, + {Time: parseTime("2014-11-10 10:20:30")}, + {Time: parseTime("2014-11-12 10:20:30")}, + {Time: parseTime("2014-11-13 10:20:30")}, + {Time: parseTime("2014-11-13 10:20:30")}, + {Time: parseTime("2014-11-15 10:20:30")}, + {Time: parseTime("2014-11-18 10:20:30")}, + {Time: parseTime("2014-11-20 10:20:30")}, + {Time: parseTime("2014-11-21 10:20:30")}, + {Time: parseTime("2014-11-22 10:20:30")}, + {Time: parseTime("2015-09-01 10:20:30")}, + {Time: parseTime("2015-09-02 10:20:30")}, + {Time: parseTime("2015-09-05 10:20:30")}, + {Time: parseTime("2015-09-06 10:20:30")}, + {Time: parseTime("2015-09-08 10:20:30")}, + {Time: parseTime("2015-09-09 10:20:30")}, + {Time: parseTime("2015-09-10 10:20:30")}, + {Time: parseTime("2015-09-11 10:20:30")}, + {Time: parseTime("2015-09-20 10:20:30")}, + {Time: parseTime("2015-09-22 10:20:30")}, + {Time: parseTime("2015-08-08 10:20:30")}, + {Time: parseTime("2015-08-10 10:20:30")}, + {Time: parseTime("2015-08-12 10:20:30")}, + {Time: parseTime("2015-08-13 10:20:30")}, + {Time: parseTime("2015-08-13 10:20:30")}, + {Time: parseTime("2015-08-15 10:20:30")}, + {Time: parseTime("2015-08-18 10:20:30")}, + {Time: parseTime("2015-08-20 10:20:30")}, + {Time: parseTime("2015-08-21 10:20:30")}, + {Time: parseTime("2015-08-22 10:20:30")}, + {Time: parseTime("2015-10-01 10:20:30")}, + {Time: parseTime("2015-10-02 10:20:30")}, + {Time: parseTime("2015-10-05 10:20:30")}, + {Time: parseTime("2015-10-06 10:20:30")}, + {Time: parseTime("2015-10-08 10:20:30")}, + {Time: parseTime("2015-10-09 10:20:30")}, + {Time: parseTime("2015-10-10 10:20:30")}, + {Time: parseTime("2015-10-11 10:20:30")}, + {Time: parseTime("2015-10-20 10:20:30")}, + {Time: parseTime("2015-10-22 10:20:30")}, + {Time: parseTime("2015-11-08 10:20:30")}, + {Time: parseTime("2015-11-10 10:20:30")}, + {Time: parseTime("2015-11-12 10:20:30")}, + {Time: parseTime("2015-11-13 10:20:30")}, + {Time: parseTime("2015-11-13 10:20:30")}, + {Time: parseTime("2015-11-15 10:20:30")}, + {Time: parseTime("2015-11-18 10:20:30")}, + {Time: parseTime("2015-11-20 10:20:30")}, + {Time: parseTime("2015-11-21 10:20:30")}, + {Time: parseTime("2015-11-22 10:20:30")}, + {Time: parseTime("2016-01-01 01:02:03")}, + {Time: parseTime("2016-01-01 01:03:03")}, + {Time: parseTime("2016-01-01 07:08:03")}, + {Time: parseTime("2016-01-03 07:02:03")}, + {Time: parseTime("2016-01-04 10:23:03")}, + {Time: parseTime("2016-01-04 11:23:03")}, + {Time: parseTime("2016-01-04 12:23:03")}, + {Time: parseTime("2016-01-04 12:24:03")}, + {Time: parseTime("2016-01-04 12:28:03")}, + {Time: parseTime("2016-01-04 12:30:03")}, + {Time: parseTime("2016-01-04 16:23:03")}, + {Time: parseTime("2016-01-05 09:02:03")}, + {Time: parseTime("2016-01-06 08:02:03")}, + {Time: parseTime("2016-01-07 10:02:03")}, + {Time: parseTime("2016-01-08 20:02:03")}, + {Time: parseTime("2016-01-09 21:02:03")}, + {Time: parseTime("2016-01-12 21:02:03")}, + {Time: parseTime("2016-01-12 21:08:03")}, + {Time: parseTime("2016-01-18 12:02:03")}, } var expireTests = []ExpirePolicy{ diff --git a/src/restic/testdata/expired_snapshots_0 b/src/restic/testdata/expired_snapshots_0 index d83ec624e..d70bdbaa1 100644 --- a/src/restic/testdata/expired_snapshots_0 +++ b/src/restic/testdata/expired_snapshots_0 @@ -1,496 +1,496 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:02:03+01:00", + "time": "2016-01-12T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-07T10:02:03+01:00", + "time": "2016-01-07T10:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-06T08:02:03+01:00", + "time": "2016-01-06T08:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-05T09:02:03+01:00", + "time": "2016-01-05T09:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T16:23:03+01:00", + "time": "2016-01-04T16:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:30:03+01:00", + "time": "2016-01-04T12:30:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:28:03+01:00", + "time": "2016-01-04T12:28:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:24:03+01:00", + "time": "2016-01-04T12:24:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:23:03+01:00", + "time": "2016-01-04T12:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T11:23:03+01:00", + "time": "2016-01-04T11:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T10:23:03+01:00", + "time": "2016-01-04T10:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-03T07:02:03+01:00", + "time": "2016-01-03T07:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-01T07:08:03+01:00", + "time": "2016-01-01T07:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-01T01:03:03+01:00", + "time": "2016-01-01T01:03:03Z", "tree": null, "paths": null }, { - "time": "2016-01-01T01:02:03+01:00", + "time": "2016-01-01T01:02:03Z", "tree": null, "paths": null }, { - "time": "2015-11-22T10:20:30+01:00", + "time": "2015-11-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-21T10:20:30+01:00", + "time": "2015-11-21T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-20T10:20:30+01:00", + "time": "2015-11-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-18T10:20:30+01:00", + "time": "2015-11-18T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-15T10:20:30+01:00", + "time": "2015-11-15T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-13T10:20:30+01:00", + "time": "2015-11-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-13T10:20:30+01:00", + "time": "2015-11-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-12T10:20:30+01:00", + "time": "2015-11-12T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-10T10:20:30+01:00", + "time": "2015-11-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-08T10:20:30+01:00", + "time": "2015-11-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-22T11:20:30+02:00", + "time": "2015-10-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-20T11:20:30+02:00", + "time": "2015-10-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-11T11:20:30+02:00", + "time": "2015-10-11T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-10T11:20:30+02:00", + "time": "2015-10-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-09T11:20:30+02:00", + "time": "2015-10-09T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-08T11:20:30+02:00", + "time": "2015-10-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-06T11:20:30+02:00", + "time": "2015-10-06T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-05T11:20:30+02:00", + "time": "2015-10-05T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-02T11:20:30+02:00", + "time": "2015-10-02T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-01T11:20:30+02:00", + "time": "2015-10-01T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-22T11:20:30+02:00", + "time": "2015-09-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-20T11:20:30+02:00", + "time": "2015-09-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-11T11:20:30+02:00", + "time": "2015-09-11T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-10T11:20:30+02:00", + "time": "2015-09-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-09T11:20:30+02:00", + "time": "2015-09-09T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-08T11:20:30+02:00", + "time": "2015-09-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-06T11:20:30+02:00", + "time": "2015-09-06T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-05T11:20:30+02:00", + "time": "2015-09-05T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-02T11:20:30+02:00", + "time": "2015-09-02T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-01T11:20:30+02:00", + "time": "2015-09-01T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-22T11:20:30+02:00", + "time": "2015-08-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-21T11:20:30+02:00", + "time": "2015-08-21T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-20T11:20:30+02:00", + "time": "2015-08-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-18T11:20:30+02:00", + "time": "2015-08-18T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-15T11:20:30+02:00", + "time": "2015-08-15T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-13T11:20:30+02:00", + "time": "2015-08-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-13T11:20:30+02:00", + "time": "2015-08-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-12T11:20:30+02:00", + "time": "2015-08-12T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-10T11:20:30+02:00", + "time": "2015-08-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-08T11:20:30+02:00", + "time": "2015-08-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-22T10:20:30+01:00", + "time": "2014-11-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-21T10:20:30+01:00", + "time": "2014-11-21T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-20T10:20:30+01:00", + "time": "2014-11-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-18T10:20:30+01:00", + "time": "2014-11-18T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-15T10:20:30+01:00", + "time": "2014-11-15T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-13T10:20:30+01:00", + "time": "2014-11-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-13T10:20:30+01:00", + "time": "2014-11-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-12T10:20:30+01:00", + "time": "2014-11-12T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-10T10:20:30+01:00", + "time": "2014-11-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-08T10:20:30+01:00", + "time": "2014-11-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-22T11:20:30+02:00", + "time": "2014-10-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-20T11:20:30+02:00", + "time": "2014-10-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-11T11:20:30+02:00", + "time": "2014-10-11T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-10T11:20:30+02:00", + "time": "2014-10-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-09T11:20:30+02:00", + "time": "2014-10-09T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-08T11:20:30+02:00", + "time": "2014-10-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-06T11:20:30+02:00", + "time": "2014-10-06T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-05T11:20:30+02:00", + "time": "2014-10-05T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-02T11:20:30+02:00", + "time": "2014-10-02T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-01T11:20:30+02:00", + "time": "2014-10-01T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-22T11:20:30+02:00", + "time": "2014-09-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-20T11:20:30+02:00", + "time": "2014-09-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-11T11:20:30+02:00", + "time": "2014-09-11T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-10T11:20:30+02:00", + "time": "2014-09-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-09T11:20:30+02:00", + "time": "2014-09-09T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-08T11:20:30+02:00", + "time": "2014-09-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-06T11:20:30+02:00", + "time": "2014-09-06T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-05T11:20:30+02:00", + "time": "2014-09-05T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-02T11:20:30+02:00", + "time": "2014-09-02T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-01T11:20:30+02:00", + "time": "2014-09-01T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-22T11:20:30+02:00", + "time": "2014-08-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-21T11:20:30+02:00", + "time": "2014-08-21T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-20T11:20:30+02:00", + "time": "2014-08-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-18T11:20:30+02:00", + "time": "2014-08-18T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-15T11:20:30+02:00", + "time": "2014-08-15T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-13T11:20:30+02:00", + "time": "2014-08-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-13T11:20:30+02:00", + "time": "2014-08-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-12T11:20:30+02:00", + "time": "2014-08-12T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-10T11:20:30+02:00", + "time": "2014-08-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-08T11:20:30+02:00", + "time": "2014-08-08T10:20:30Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_1 b/src/restic/testdata/expired_snapshots_1 index 5a6f3e8af..22e6c2141 100644 --- a/src/restic/testdata/expired_snapshots_1 +++ b/src/restic/testdata/expired_snapshots_1 @@ -1,51 +1,51 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:02:03+01:00", + "time": "2016-01-12T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-07T10:02:03+01:00", + "time": "2016-01-07T10:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-06T08:02:03+01:00", + "time": "2016-01-06T08:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-05T09:02:03+01:00", + "time": "2016-01-05T09:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T16:23:03+01:00", + "time": "2016-01-04T16:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:30:03+01:00", + "time": "2016-01-04T12:30:03Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_10 b/src/restic/testdata/expired_snapshots_10 index 63fbd8b09..72ae755ce 100644 --- a/src/restic/testdata/expired_snapshots_10 +++ b/src/restic/testdata/expired_snapshots_10 @@ -1,61 +1,61 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:02:03+01:00", + "time": "2016-01-12T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-07T10:02:03+01:00", + "time": "2016-01-07T10:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-06T08:02:03+01:00", + "time": "2016-01-06T08:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-05T09:02:03+01:00", + "time": "2016-01-05T09:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T16:23:03+01:00", + "time": "2016-01-04T16:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-03T07:02:03+01:00", + "time": "2016-01-03T07:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-01T07:08:03+01:00", + "time": "2016-01-01T07:08:03Z", "tree": null, "paths": null }, { - "time": "2015-11-22T10:20:30+01:00", + "time": "2015-11-22T10:20:30Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_11 b/src/restic/testdata/expired_snapshots_11 index 853fdce73..d36f97b3c 100644 --- a/src/restic/testdata/expired_snapshots_11 +++ b/src/restic/testdata/expired_snapshots_11 @@ -1,11 +1,11 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_12 b/src/restic/testdata/expired_snapshots_12 index c89b120a9..57b4ab846 100644 --- a/src/restic/testdata/expired_snapshots_12 +++ b/src/restic/testdata/expired_snapshots_12 @@ -1,21 +1,21 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-03T07:02:03+01:00", + "time": "2016-01-03T07:02:03Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_13 b/src/restic/testdata/expired_snapshots_13 index 240906b19..93a52ad8c 100644 --- a/src/restic/testdata/expired_snapshots_13 +++ b/src/restic/testdata/expired_snapshots_13 @@ -1,36 +1,36 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-03T07:02:03+01:00", + "time": "2016-01-03T07:02:03Z", "tree": null, "paths": null }, { - "time": "2015-11-22T10:20:30+01:00", + "time": "2015-11-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-15T10:20:30+01:00", + "time": "2015-11-15T10:20:30Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_14 b/src/restic/testdata/expired_snapshots_14 index 938a85271..5126b3e01 100644 --- a/src/restic/testdata/expired_snapshots_14 +++ b/src/restic/testdata/expired_snapshots_14 @@ -1,31 +1,31 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2015-11-22T10:20:30+01:00", + "time": "2015-11-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-22T11:20:30+02:00", + "time": "2015-10-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-22T11:20:30+02:00", + "time": "2015-09-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-22T11:20:30+02:00", + "time": "2015-08-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-22T10:20:30+01:00", + "time": "2014-11-22T10:20:30Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_15 b/src/restic/testdata/expired_snapshots_15 index 52f6b1aa1..58d52ae4a 100644 --- a/src/restic/testdata/expired_snapshots_15 +++ b/src/restic/testdata/expired_snapshots_15 @@ -1,51 +1,51 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-03T07:02:03+01:00", + "time": "2016-01-03T07:02:03Z", "tree": null, "paths": null }, { - "time": "2015-11-22T10:20:30+01:00", + "time": "2015-11-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-22T11:20:30+02:00", + "time": "2015-10-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-22T11:20:30+02:00", + "time": "2015-09-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-22T11:20:30+02:00", + "time": "2015-08-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-22T10:20:30+01:00", + "time": "2014-11-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-22T11:20:30+02:00", + "time": "2014-10-22T10:20:30Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_16 b/src/restic/testdata/expired_snapshots_16 index aaf743f09..37a905da0 100644 --- a/src/restic/testdata/expired_snapshots_16 +++ b/src/restic/testdata/expired_snapshots_16 @@ -1,16 +1,16 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2015-11-22T10:20:30+01:00", + "time": "2015-11-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-22T10:20:30+01:00", + "time": "2014-11-22T10:20:30Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_17 b/src/restic/testdata/expired_snapshots_17 index eddb2c833..553c18d89 100644 --- a/src/restic/testdata/expired_snapshots_17 +++ b/src/restic/testdata/expired_snapshots_17 @@ -1,71 +1,71 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-07T10:02:03+01:00", + "time": "2016-01-07T10:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-06T08:02:03+01:00", + "time": "2016-01-06T08:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-05T09:02:03+01:00", + "time": "2016-01-05T09:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T16:23:03+01:00", + "time": "2016-01-04T16:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-03T07:02:03+01:00", + "time": "2016-01-03T07:02:03Z", "tree": null, "paths": null }, { - "time": "2015-11-22T10:20:30+01:00", + "time": "2015-11-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-22T11:20:30+02:00", + "time": "2015-10-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-22T11:20:30+02:00", + "time": "2015-09-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-22T11:20:30+02:00", + "time": "2015-08-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-22T10:20:30+01:00", + "time": "2014-11-22T10:20:30Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_2 b/src/restic/testdata/expired_snapshots_2 index fcc8bb973..867e90ff0 100644 --- a/src/restic/testdata/expired_snapshots_2 +++ b/src/restic/testdata/expired_snapshots_2 @@ -1,76 +1,76 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:02:03+01:00", + "time": "2016-01-12T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-07T10:02:03+01:00", + "time": "2016-01-07T10:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-06T08:02:03+01:00", + "time": "2016-01-06T08:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-05T09:02:03+01:00", + "time": "2016-01-05T09:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T16:23:03+01:00", + "time": "2016-01-04T16:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:30:03+01:00", + "time": "2016-01-04T12:30:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:28:03+01:00", + "time": "2016-01-04T12:28:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:24:03+01:00", + "time": "2016-01-04T12:24:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:23:03+01:00", + "time": "2016-01-04T12:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T11:23:03+01:00", + "time": "2016-01-04T11:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T10:23:03+01:00", + "time": "2016-01-04T10:23:03Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_3 b/src/restic/testdata/expired_snapshots_3 index d83ec624e..d70bdbaa1 100644 --- a/src/restic/testdata/expired_snapshots_3 +++ b/src/restic/testdata/expired_snapshots_3 @@ -1,496 +1,496 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:02:03+01:00", + "time": "2016-01-12T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-07T10:02:03+01:00", + "time": "2016-01-07T10:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-06T08:02:03+01:00", + "time": "2016-01-06T08:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-05T09:02:03+01:00", + "time": "2016-01-05T09:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T16:23:03+01:00", + "time": "2016-01-04T16:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:30:03+01:00", + "time": "2016-01-04T12:30:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:28:03+01:00", + "time": "2016-01-04T12:28:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:24:03+01:00", + "time": "2016-01-04T12:24:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:23:03+01:00", + "time": "2016-01-04T12:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T11:23:03+01:00", + "time": "2016-01-04T11:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T10:23:03+01:00", + "time": "2016-01-04T10:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-03T07:02:03+01:00", + "time": "2016-01-03T07:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-01T07:08:03+01:00", + "time": "2016-01-01T07:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-01T01:03:03+01:00", + "time": "2016-01-01T01:03:03Z", "tree": null, "paths": null }, { - "time": "2016-01-01T01:02:03+01:00", + "time": "2016-01-01T01:02:03Z", "tree": null, "paths": null }, { - "time": "2015-11-22T10:20:30+01:00", + "time": "2015-11-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-21T10:20:30+01:00", + "time": "2015-11-21T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-20T10:20:30+01:00", + "time": "2015-11-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-18T10:20:30+01:00", + "time": "2015-11-18T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-15T10:20:30+01:00", + "time": "2015-11-15T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-13T10:20:30+01:00", + "time": "2015-11-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-13T10:20:30+01:00", + "time": "2015-11-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-12T10:20:30+01:00", + "time": "2015-11-12T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-10T10:20:30+01:00", + "time": "2015-11-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-08T10:20:30+01:00", + "time": "2015-11-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-22T11:20:30+02:00", + "time": "2015-10-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-20T11:20:30+02:00", + "time": "2015-10-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-11T11:20:30+02:00", + "time": "2015-10-11T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-10T11:20:30+02:00", + "time": "2015-10-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-09T11:20:30+02:00", + "time": "2015-10-09T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-08T11:20:30+02:00", + "time": "2015-10-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-06T11:20:30+02:00", + "time": "2015-10-06T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-05T11:20:30+02:00", + "time": "2015-10-05T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-02T11:20:30+02:00", + "time": "2015-10-02T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-01T11:20:30+02:00", + "time": "2015-10-01T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-22T11:20:30+02:00", + "time": "2015-09-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-20T11:20:30+02:00", + "time": "2015-09-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-11T11:20:30+02:00", + "time": "2015-09-11T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-10T11:20:30+02:00", + "time": "2015-09-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-09T11:20:30+02:00", + "time": "2015-09-09T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-08T11:20:30+02:00", + "time": "2015-09-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-06T11:20:30+02:00", + "time": "2015-09-06T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-05T11:20:30+02:00", + "time": "2015-09-05T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-02T11:20:30+02:00", + "time": "2015-09-02T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-01T11:20:30+02:00", + "time": "2015-09-01T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-22T11:20:30+02:00", + "time": "2015-08-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-21T11:20:30+02:00", + "time": "2015-08-21T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-20T11:20:30+02:00", + "time": "2015-08-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-18T11:20:30+02:00", + "time": "2015-08-18T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-15T11:20:30+02:00", + "time": "2015-08-15T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-13T11:20:30+02:00", + "time": "2015-08-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-13T11:20:30+02:00", + "time": "2015-08-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-12T11:20:30+02:00", + "time": "2015-08-12T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-10T11:20:30+02:00", + "time": "2015-08-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-08T11:20:30+02:00", + "time": "2015-08-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-22T10:20:30+01:00", + "time": "2014-11-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-21T10:20:30+01:00", + "time": "2014-11-21T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-20T10:20:30+01:00", + "time": "2014-11-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-18T10:20:30+01:00", + "time": "2014-11-18T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-15T10:20:30+01:00", + "time": "2014-11-15T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-13T10:20:30+01:00", + "time": "2014-11-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-13T10:20:30+01:00", + "time": "2014-11-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-12T10:20:30+01:00", + "time": "2014-11-12T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-10T10:20:30+01:00", + "time": "2014-11-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-08T10:20:30+01:00", + "time": "2014-11-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-22T11:20:30+02:00", + "time": "2014-10-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-20T11:20:30+02:00", + "time": "2014-10-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-11T11:20:30+02:00", + "time": "2014-10-11T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-10T11:20:30+02:00", + "time": "2014-10-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-09T11:20:30+02:00", + "time": "2014-10-09T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-08T11:20:30+02:00", + "time": "2014-10-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-06T11:20:30+02:00", + "time": "2014-10-06T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-05T11:20:30+02:00", + "time": "2014-10-05T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-02T11:20:30+02:00", + "time": "2014-10-02T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-01T11:20:30+02:00", + "time": "2014-10-01T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-22T11:20:30+02:00", + "time": "2014-09-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-20T11:20:30+02:00", + "time": "2014-09-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-11T11:20:30+02:00", + "time": "2014-09-11T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-10T11:20:30+02:00", + "time": "2014-09-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-09T11:20:30+02:00", + "time": "2014-09-09T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-08T11:20:30+02:00", + "time": "2014-09-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-06T11:20:30+02:00", + "time": "2014-09-06T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-05T11:20:30+02:00", + "time": "2014-09-05T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-02T11:20:30+02:00", + "time": "2014-09-02T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-01T11:20:30+02:00", + "time": "2014-09-01T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-22T11:20:30+02:00", + "time": "2014-08-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-21T11:20:30+02:00", + "time": "2014-08-21T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-20T11:20:30+02:00", + "time": "2014-08-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-18T11:20:30+02:00", + "time": "2014-08-18T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-15T11:20:30+02:00", + "time": "2014-08-15T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-13T11:20:30+02:00", + "time": "2014-08-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-13T11:20:30+02:00", + "time": "2014-08-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-12T11:20:30+02:00", + "time": "2014-08-12T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-10T11:20:30+02:00", + "time": "2014-08-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-08T11:20:30+02:00", + "time": "2014-08-08T10:20:30Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_4 b/src/restic/testdata/expired_snapshots_4 index d83ec624e..d70bdbaa1 100644 --- a/src/restic/testdata/expired_snapshots_4 +++ b/src/restic/testdata/expired_snapshots_4 @@ -1,496 +1,496 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:02:03+01:00", + "time": "2016-01-12T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-07T10:02:03+01:00", + "time": "2016-01-07T10:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-06T08:02:03+01:00", + "time": "2016-01-06T08:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-05T09:02:03+01:00", + "time": "2016-01-05T09:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T16:23:03+01:00", + "time": "2016-01-04T16:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:30:03+01:00", + "time": "2016-01-04T12:30:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:28:03+01:00", + "time": "2016-01-04T12:28:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:24:03+01:00", + "time": "2016-01-04T12:24:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:23:03+01:00", + "time": "2016-01-04T12:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T11:23:03+01:00", + "time": "2016-01-04T11:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T10:23:03+01:00", + "time": "2016-01-04T10:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-03T07:02:03+01:00", + "time": "2016-01-03T07:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-01T07:08:03+01:00", + "time": "2016-01-01T07:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-01T01:03:03+01:00", + "time": "2016-01-01T01:03:03Z", "tree": null, "paths": null }, { - "time": "2016-01-01T01:02:03+01:00", + "time": "2016-01-01T01:02:03Z", "tree": null, "paths": null }, { - "time": "2015-11-22T10:20:30+01:00", + "time": "2015-11-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-21T10:20:30+01:00", + "time": "2015-11-21T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-20T10:20:30+01:00", + "time": "2015-11-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-18T10:20:30+01:00", + "time": "2015-11-18T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-15T10:20:30+01:00", + "time": "2015-11-15T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-13T10:20:30+01:00", + "time": "2015-11-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-13T10:20:30+01:00", + "time": "2015-11-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-12T10:20:30+01:00", + "time": "2015-11-12T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-10T10:20:30+01:00", + "time": "2015-11-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-08T10:20:30+01:00", + "time": "2015-11-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-22T11:20:30+02:00", + "time": "2015-10-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-20T11:20:30+02:00", + "time": "2015-10-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-11T11:20:30+02:00", + "time": "2015-10-11T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-10T11:20:30+02:00", + "time": "2015-10-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-09T11:20:30+02:00", + "time": "2015-10-09T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-08T11:20:30+02:00", + "time": "2015-10-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-06T11:20:30+02:00", + "time": "2015-10-06T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-05T11:20:30+02:00", + "time": "2015-10-05T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-02T11:20:30+02:00", + "time": "2015-10-02T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-01T11:20:30+02:00", + "time": "2015-10-01T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-22T11:20:30+02:00", + "time": "2015-09-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-20T11:20:30+02:00", + "time": "2015-09-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-11T11:20:30+02:00", + "time": "2015-09-11T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-10T11:20:30+02:00", + "time": "2015-09-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-09T11:20:30+02:00", + "time": "2015-09-09T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-08T11:20:30+02:00", + "time": "2015-09-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-06T11:20:30+02:00", + "time": "2015-09-06T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-05T11:20:30+02:00", + "time": "2015-09-05T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-02T11:20:30+02:00", + "time": "2015-09-02T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-01T11:20:30+02:00", + "time": "2015-09-01T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-22T11:20:30+02:00", + "time": "2015-08-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-21T11:20:30+02:00", + "time": "2015-08-21T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-20T11:20:30+02:00", + "time": "2015-08-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-18T11:20:30+02:00", + "time": "2015-08-18T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-15T11:20:30+02:00", + "time": "2015-08-15T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-13T11:20:30+02:00", + "time": "2015-08-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-13T11:20:30+02:00", + "time": "2015-08-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-12T11:20:30+02:00", + "time": "2015-08-12T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-10T11:20:30+02:00", + "time": "2015-08-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-08-08T11:20:30+02:00", + "time": "2015-08-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-22T10:20:30+01:00", + "time": "2014-11-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-21T10:20:30+01:00", + "time": "2014-11-21T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-20T10:20:30+01:00", + "time": "2014-11-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-18T10:20:30+01:00", + "time": "2014-11-18T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-15T10:20:30+01:00", + "time": "2014-11-15T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-13T10:20:30+01:00", + "time": "2014-11-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-13T10:20:30+01:00", + "time": "2014-11-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-12T10:20:30+01:00", + "time": "2014-11-12T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-10T10:20:30+01:00", + "time": "2014-11-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-11-08T10:20:30+01:00", + "time": "2014-11-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-22T11:20:30+02:00", + "time": "2014-10-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-20T11:20:30+02:00", + "time": "2014-10-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-11T11:20:30+02:00", + "time": "2014-10-11T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-10T11:20:30+02:00", + "time": "2014-10-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-09T11:20:30+02:00", + "time": "2014-10-09T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-08T11:20:30+02:00", + "time": "2014-10-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-06T11:20:30+02:00", + "time": "2014-10-06T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-05T11:20:30+02:00", + "time": "2014-10-05T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-02T11:20:30+02:00", + "time": "2014-10-02T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-10-01T11:20:30+02:00", + "time": "2014-10-01T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-22T11:20:30+02:00", + "time": "2014-09-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-20T11:20:30+02:00", + "time": "2014-09-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-11T11:20:30+02:00", + "time": "2014-09-11T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-10T11:20:30+02:00", + "time": "2014-09-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-09T11:20:30+02:00", + "time": "2014-09-09T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-08T11:20:30+02:00", + "time": "2014-09-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-06T11:20:30+02:00", + "time": "2014-09-06T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-05T11:20:30+02:00", + "time": "2014-09-05T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-02T11:20:30+02:00", + "time": "2014-09-02T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-09-01T11:20:30+02:00", + "time": "2014-09-01T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-22T11:20:30+02:00", + "time": "2014-08-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-21T11:20:30+02:00", + "time": "2014-08-21T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-20T11:20:30+02:00", + "time": "2014-08-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-18T11:20:30+02:00", + "time": "2014-08-18T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-15T11:20:30+02:00", + "time": "2014-08-15T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-13T11:20:30+02:00", + "time": "2014-08-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-13T11:20:30+02:00", + "time": "2014-08-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-12T11:20:30+02:00", + "time": "2014-08-12T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-10T11:20:30+02:00", + "time": "2014-08-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2014-08-08T11:20:30+02:00", + "time": "2014-08-08T10:20:30Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_5 b/src/restic/testdata/expired_snapshots_5 index f84efb1f5..42ed6051a 100644 --- a/src/restic/testdata/expired_snapshots_5 +++ b/src/restic/testdata/expired_snapshots_5 @@ -1,101 +1,101 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-07T10:02:03+01:00", + "time": "2016-01-07T10:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-06T08:02:03+01:00", + "time": "2016-01-06T08:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-05T09:02:03+01:00", + "time": "2016-01-05T09:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T16:23:03+01:00", + "time": "2016-01-04T16:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T12:30:03+01:00", + "time": "2016-01-04T12:30:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T11:23:03+01:00", + "time": "2016-01-04T11:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T10:23:03+01:00", + "time": "2016-01-04T10:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-03T07:02:03+01:00", + "time": "2016-01-03T07:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-01T07:08:03+01:00", + "time": "2016-01-01T07:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-01T01:03:03+01:00", + "time": "2016-01-01T01:03:03Z", "tree": null, "paths": null }, { - "time": "2015-11-22T10:20:30+01:00", + "time": "2015-11-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-21T10:20:30+01:00", + "time": "2015-11-21T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-20T10:20:30+01:00", + "time": "2015-11-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-18T10:20:30+01:00", + "time": "2015-11-18T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-15T10:20:30+01:00", + "time": "2015-11-15T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-13T10:20:30+01:00", + "time": "2015-11-13T10:20:30Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_6 b/src/restic/testdata/expired_snapshots_6 index e862779c0..69b347d7e 100644 --- a/src/restic/testdata/expired_snapshots_6 +++ b/src/restic/testdata/expired_snapshots_6 @@ -1,16 +1,16 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_7 b/src/restic/testdata/expired_snapshots_7 index 6f53af139..ca08ff08a 100644 --- a/src/restic/testdata/expired_snapshots_7 +++ b/src/restic/testdata/expired_snapshots_7 @@ -1,51 +1,51 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-07T10:02:03+01:00", + "time": "2016-01-07T10:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-06T08:02:03+01:00", + "time": "2016-01-06T08:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-05T09:02:03+01:00", + "time": "2016-01-05T09:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T16:23:03+01:00", + "time": "2016-01-04T16:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-03T07:02:03+01:00", + "time": "2016-01-03T07:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-01T07:08:03+01:00", + "time": "2016-01-01T07:08:03Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_8 b/src/restic/testdata/expired_snapshots_8 index 750da193f..b0a64d691 100644 --- a/src/restic/testdata/expired_snapshots_8 +++ b/src/restic/testdata/expired_snapshots_8 @@ -1,151 +1,151 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-07T10:02:03+01:00", + "time": "2016-01-07T10:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-06T08:02:03+01:00", + "time": "2016-01-06T08:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-05T09:02:03+01:00", + "time": "2016-01-05T09:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T16:23:03+01:00", + "time": "2016-01-04T16:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-03T07:02:03+01:00", + "time": "2016-01-03T07:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-01T07:08:03+01:00", + "time": "2016-01-01T07:08:03Z", "tree": null, "paths": null }, { - "time": "2015-11-22T10:20:30+01:00", + "time": "2015-11-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-21T10:20:30+01:00", + "time": "2015-11-21T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-20T10:20:30+01:00", + "time": "2015-11-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-18T10:20:30+01:00", + "time": "2015-11-18T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-15T10:20:30+01:00", + "time": "2015-11-15T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-13T10:20:30+01:00", + "time": "2015-11-13T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-12T10:20:30+01:00", + "time": "2015-11-12T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-10T10:20:30+01:00", + "time": "2015-11-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-11-08T10:20:30+01:00", + "time": "2015-11-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-22T11:20:30+02:00", + "time": "2015-10-22T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-20T11:20:30+02:00", + "time": "2015-10-20T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-11T11:20:30+02:00", + "time": "2015-10-11T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-10T11:20:30+02:00", + "time": "2015-10-10T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-09T11:20:30+02:00", + "time": "2015-10-09T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-08T11:20:30+02:00", + "time": "2015-10-08T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-06T11:20:30+02:00", + "time": "2015-10-06T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-05T11:20:30+02:00", + "time": "2015-10-05T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-02T11:20:30+02:00", + "time": "2015-10-02T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-10-01T11:20:30+02:00", + "time": "2015-10-01T10:20:30Z", "tree": null, "paths": null }, { - "time": "2015-09-22T11:20:30+02:00", + "time": "2015-09-22T10:20:30Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/expired_snapshots_9 b/src/restic/testdata/expired_snapshots_9 index fd72ec6a5..0b577ae74 100644 --- a/src/restic/testdata/expired_snapshots_9 +++ b/src/restic/testdata/expired_snapshots_9 @@ -1,51 +1,51 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": null }, { - "time": "2016-01-12T21:02:03+01:00", + "time": "2016-01-12T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-07T10:02:03+01:00", + "time": "2016-01-07T10:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-06T08:02:03+01:00", + "time": "2016-01-06T08:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-05T09:02:03+01:00", + "time": "2016-01-05T09:02:03Z", "tree": null, "paths": null }, { - "time": "2016-01-04T16:23:03+01:00", + "time": "2016-01-04T16:23:03Z", "tree": null, "paths": null }, { - "time": "2016-01-03T07:02:03+01:00", + "time": "2016-01-03T07:02:03Z", "tree": null, "paths": null } diff --git a/src/restic/testdata/filter_snapshots_0 b/src/restic/testdata/filter_snapshots_0 index 022aa7aec..4afbe3b55 100644 --- a/src/restic/testdata/filter_snapshots_0 +++ b/src/restic/testdata/filter_snapshots_0 @@ -1,6 +1,6 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": [ "/usr", @@ -10,7 +10,7 @@ "username": "testuser" }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": [ "/usr", @@ -20,7 +20,7 @@ "username": "testuser" }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": [ "/usr", @@ -30,7 +30,7 @@ "username": "root" }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": [ "/usr", @@ -40,7 +40,7 @@ "username": "root" }, { - "time": "2016-01-07T10:02:03+01:00", + "time": "2016-01-07T10:02:03Z", "tree": null, "paths": [ "/usr", @@ -50,7 +50,7 @@ "username": "testuser" }, { - "time": "2016-01-06T08:02:03+01:00", + "time": "2016-01-06T08:02:03Z", "tree": null, "paths": [ "/usr", @@ -60,7 +60,7 @@ "username": "testuser" }, { - "time": "2016-01-05T09:02:03+01:00", + "time": "2016-01-05T09:02:03Z", "tree": null, "paths": [ "/usr", @@ -70,7 +70,7 @@ "username": "testuser" }, { - "time": "2016-01-04T16:23:03+01:00", + "time": "2016-01-04T16:23:03Z", "tree": null, "paths": [ "/usr", @@ -80,7 +80,7 @@ "username": "testuser" }, { - "time": "2016-01-04T12:30:03+01:00", + "time": "2016-01-04T12:30:03Z", "tree": null, "paths": [ "/usr", @@ -90,7 +90,7 @@ "username": "testuser" }, { - "time": "2016-01-04T12:28:03+01:00", + "time": "2016-01-04T12:28:03Z", "tree": null, "paths": [ "/usr", @@ -100,7 +100,7 @@ "username": "testuser" }, { - "time": "2016-01-04T12:24:03+01:00", + "time": "2016-01-04T12:24:03Z", "tree": null, "paths": [ "/usr", @@ -110,7 +110,7 @@ "username": "testuser" }, { - "time": "2016-01-04T12:23:03+01:00", + "time": "2016-01-04T12:23:03Z", "tree": null, "paths": [ "/usr", @@ -120,7 +120,7 @@ "username": "testuser" }, { - "time": "2016-01-04T11:23:03+01:00", + "time": "2016-01-04T11:23:03Z", "tree": null, "paths": [ "/usr", @@ -130,7 +130,7 @@ "username": "testuser" }, { - "time": "2016-01-04T10:23:03+01:00", + "time": "2016-01-04T10:23:03Z", "tree": null, "paths": [ "/usr", @@ -140,7 +140,7 @@ "username": "testuser" }, { - "time": "2016-01-03T07:02:03+01:00", + "time": "2016-01-03T07:02:03Z", "tree": null, "paths": [ "/usr", @@ -150,7 +150,7 @@ "username": "testuser" }, { - "time": "2016-01-01T01:02:03+01:00", + "time": "2016-01-01T01:02:03Z", "tree": null, "paths": [ "/usr", diff --git a/src/restic/testdata/filter_snapshots_1 b/src/restic/testdata/filter_snapshots_1 index 1239b4813..c9bd44ddc 100644 --- a/src/restic/testdata/filter_snapshots_1 +++ b/src/restic/testdata/filter_snapshots_1 @@ -1,6 +1,6 @@ [ { - "time": "2016-01-12T21:02:03+01:00", + "time": "2016-01-12T21:02:03Z", "tree": null, "paths": [ "/usr", @@ -10,7 +10,7 @@ "username": "root" }, { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": [ "/usr", @@ -20,7 +20,7 @@ "username": "root" }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": [ "/usr", diff --git a/src/restic/testdata/filter_snapshots_2 b/src/restic/testdata/filter_snapshots_2 index 1bde9e513..cae5b39e7 100644 --- a/src/restic/testdata/filter_snapshots_2 +++ b/src/restic/testdata/filter_snapshots_2 @@ -1,6 +1,6 @@ [ { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": [ "/usr", @@ -10,7 +10,7 @@ "username": "root" }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": [ "/usr", diff --git a/src/restic/testdata/filter_snapshots_3 b/src/restic/testdata/filter_snapshots_3 index bf120b32b..d30f4bf37 100644 --- a/src/restic/testdata/filter_snapshots_3 +++ b/src/restic/testdata/filter_snapshots_3 @@ -1,6 +1,6 @@ [ { - "time": "2016-01-18T12:02:03+01:00", + "time": "2016-01-18T12:02:03Z", "tree": null, "paths": [ "/usr", @@ -10,7 +10,7 @@ "username": "testuser" }, { - "time": "2016-01-12T21:08:03+01:00", + "time": "2016-01-12T21:08:03Z", "tree": null, "paths": [ "/usr", @@ -20,7 +20,7 @@ "username": "testuser" }, { - "time": "2016-01-07T10:02:03+01:00", + "time": "2016-01-07T10:02:03Z", "tree": null, "paths": [ "/usr", @@ -30,7 +30,7 @@ "username": "testuser" }, { - "time": "2016-01-06T08:02:03+01:00", + "time": "2016-01-06T08:02:03Z", "tree": null, "paths": [ "/usr", @@ -40,7 +40,7 @@ "username": "testuser" }, { - "time": "2016-01-05T09:02:03+01:00", + "time": "2016-01-05T09:02:03Z", "tree": null, "paths": [ "/usr", @@ -50,7 +50,7 @@ "username": "testuser" }, { - "time": "2016-01-04T16:23:03+01:00", + "time": "2016-01-04T16:23:03Z", "tree": null, "paths": [ "/usr", @@ -60,7 +60,7 @@ "username": "testuser" }, { - "time": "2016-01-04T12:30:03+01:00", + "time": "2016-01-04T12:30:03Z", "tree": null, "paths": [ "/usr", @@ -70,7 +70,7 @@ "username": "testuser" }, { - "time": "2016-01-04T12:28:03+01:00", + "time": "2016-01-04T12:28:03Z", "tree": null, "paths": [ "/usr", @@ -80,7 +80,7 @@ "username": "testuser" }, { - "time": "2016-01-04T12:24:03+01:00", + "time": "2016-01-04T12:24:03Z", "tree": null, "paths": [ "/usr", @@ -90,7 +90,7 @@ "username": "testuser" }, { - "time": "2016-01-04T12:23:03+01:00", + "time": "2016-01-04T12:23:03Z", "tree": null, "paths": [ "/usr", @@ -100,7 +100,7 @@ "username": "testuser" }, { - "time": "2016-01-04T11:23:03+01:00", + "time": "2016-01-04T11:23:03Z", "tree": null, "paths": [ "/usr", @@ -110,7 +110,7 @@ "username": "testuser" }, { - "time": "2016-01-04T10:23:03+01:00", + "time": "2016-01-04T10:23:03Z", "tree": null, "paths": [ "/usr", @@ -120,7 +120,7 @@ "username": "testuser" }, { - "time": "2016-01-03T07:02:03+01:00", + "time": "2016-01-03T07:02:03Z", "tree": null, "paths": [ "/usr", @@ -130,7 +130,7 @@ "username": "testuser" }, { - "time": "2016-01-01T07:08:03+01:00", + "time": "2016-01-01T07:08:03Z", "tree": null, "paths": [ "/usr", @@ -140,7 +140,7 @@ "username": "testuser" }, { - "time": "2016-01-01T01:03:03+01:00", + "time": "2016-01-01T01:03:03Z", "tree": null, "paths": [ "/usr", @@ -150,7 +150,7 @@ "username": "testuser" }, { - "time": "2016-01-01T01:02:03+01:00", + "time": "2016-01-01T01:02:03Z", "tree": null, "paths": [ "/usr", diff --git a/src/restic/testdata/filter_snapshots_4 b/src/restic/testdata/filter_snapshots_4 index 2c566811f..a334bbcb6 100644 --- a/src/restic/testdata/filter_snapshots_4 +++ b/src/restic/testdata/filter_snapshots_4 @@ -1,6 +1,6 @@ [ { - "time": "2016-01-01T07:08:03+01:00", + "time": "2016-01-01T07:08:03Z", "tree": null, "paths": [ "/usr", @@ -10,7 +10,7 @@ "username": "testuser" }, { - "time": "2016-01-01T01:03:03+01:00", + "time": "2016-01-01T01:03:03Z", "tree": null, "paths": [ "/usr", diff --git a/src/restic/testdata/filter_snapshots_5 b/src/restic/testdata/filter_snapshots_5 index 1bde9e513..cae5b39e7 100644 --- a/src/restic/testdata/filter_snapshots_5 +++ b/src/restic/testdata/filter_snapshots_5 @@ -1,6 +1,6 @@ [ { - "time": "2016-01-09T21:02:03+01:00", + "time": "2016-01-09T21:02:03Z", "tree": null, "paths": [ "/usr", @@ -10,7 +10,7 @@ "username": "root" }, { - "time": "2016-01-08T20:02:03+01:00", + "time": "2016-01-08T20:02:03Z", "tree": null, "paths": [ "/usr",