Skip to content

Commit

Permalink
hoge
Browse files Browse the repository at this point in the history
  • Loading branch information
delphinus committed Sep 10, 2023
1 parent 6bb0293 commit d1793b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/frecency/tests/migrator_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ local function v1_table(source)
local result = vim.fn.strptime("%FT%T%z", timestamp .. timezone)
return result ~= 0 and result or nil
end
local epoch = t "+00:00" or t "+0000"
local epoch = t "+00:00" or t "+0000" or t "Z" or t "z"
table.insert(timestamps, epoch)
log.debug { colon = t "+00:00", none = t "+0000" }
log.debug { colon = t "+00:00", none = t "+0000", z = t "z", zz = t "Z" }
end
records[path] = { count = record.count, timestamps = timestamps }
end
Expand Down

0 comments on commit d1793b6

Please sign in to comment.