Skip to content

Commit

Permalink
Fixed application name on README and flacky test
Browse files Browse the repository at this point in the history
  • Loading branch information
GPrimola committed Mar 2, 2024
1 parent c04eee7 commit c76f0d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ PrettyLoggex is a customization for [Elixir.Logger](https://hexdocs.pm/logger/Lo
> ```elixir
> def deps do
> [
> {@application, "~> 1.0.6"}
> {:pretty_loggex, "~> 1.0.6"}
> ]
> end
> ```
Expand Down
2 changes: 1 addition & 1 deletion test/formatters/helper_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ defmodule PrettyLoggex.Formatters.HelperTest do
h = String.pad_leading("#{h}", 2, "0")
min = String.pad_leading("#{min}", 2, "0")
s = String.pad_leading("#{s}", 2, "0")
ms = String.pad_leading("#{ms}", 2, "0")
ms = String.pad_leading("#{ms}", 3, "0")

assert Helper.format_timestamp(timestamp) ==
"#{y}-#{m}-#{d}T#{h}:#{min}:#{s}.#{ms}Z"
Expand Down

0 comments on commit c76f0d3

Please sign in to comment.