Skip to content

Commit 09ee312

Browse files
authored
Update test
1 parent 57dcfac commit 09ee312

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

etl/etl_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ func TestValidation(t *testing.T) {
1111
// These should fail:
1212
// Leading character before gs://
1313
_, err := etl.ValidateTestPath(
14-
`xgs://m-lab-sandbox/ndt/2016/01/26/20160126T000000Z-mlab1-prg01-ndt-0007.tgz`)
14+
`xgs://m-lab-sandbox/ndt/2016/01/26/20160126T123456Z-mlab1-prg01-ndt-0007.tgz`)
1515
if err == nil {
1616
t.Error("Should be invalid: ")
1717
}
@@ -35,12 +35,12 @@ func TestValidation(t *testing.T) {
3535
t.Error(err)
3636
}
3737
data, err = etl.ValidateTestPath(
38-
`gs://m-lab-sandbox/ndt/2016/07/14/20160714T000000Z-mlab1-lax04-ndt-0001.tar`)
38+
`gs://m-lab-sandbox/ndt/2016/07/14/20160714T123456Z-mlab1-lax04-ndt-0001.tar`)
3939
if err != nil {
4040
t.Error(err)
4141
}
4242
data, err = etl.ValidateTestPath(
43-
`gs://m-lab-sandbox/ndt/2016/07/14/20160714T000000Z-mlab1-lax04-ndt-0001.tar.gz`)
43+
`gs://m-lab-sandbox/ndt/2016/07/14/20160714T123456Z-mlab1-lax04-ndt-0001.tar.gz`)
4444
if err != nil {
4545
t.Error(err)
4646
}

0 commit comments

Comments
 (0)