run mix format
continuous-integration/drone/push Build is passing Details

This commit is contained in:
shibao 2023-09-07 18:26:27 -04:00
parent 957e433847
commit bf9fd4880f
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ defmodule Memex.DataCase do
def valid_user_password, do: "hello world!" def valid_user_password, do: "hello world!"
def random_slug(length \\ 20) do def random_slug(length \\ 20) do
symbols = '0123456789abcdef-' symbols = ~c"0123456789abcdef-"
symbol_count = Enum.count(symbols) symbol_count = Enum.count(symbols)
for _ <- Range.new(1, length), for _ <- Range.new(1, length),