* PLT-6896 Read logs from last

* Getting rid of file.Stats

* remove deprecated value

* Make non-reassigned value constant
Этот коммит содержится в:
Yusuke Nemoto
2017-12-14 04:04:55 +09:00
коммит произвёл Chris
родитель c39788b64b
Коммит ddd99f7476
5 изменённых файлов: 64 добавлений и 28 удалений

Просмотреть файл

@@ -308,18 +308,18 @@ func TestGetLogs(t *testing.T) {
logs, resp := th.SystemAdminClient.GetLogs(0, 10)
CheckNoError(t, resp)
// if len(logs) != 10 {
// t.Log(len(logs))
// t.Fatal("wrong length")
// }
if len(logs) != 10 {
t.Log(len(logs))
t.Fatal("wrong length")
}
logs, resp = th.SystemAdminClient.GetLogs(1, 10)
CheckNoError(t, resp)
// if len(logs) != 10 {
// t.Log(len(logs))
// t.Fatal("wrong length")
// }
if len(logs) != 10 {
t.Log(len(logs))
t.Fatal("wrong length")
}
logs, resp = th.SystemAdminClient.GetLogs(-1, -1)
CheckNoError(t, resp)