Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
akash-akya committed Oct 25, 2022
1 parent 6d38bea commit 1fc1de3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/exqlite/timeout_segfault_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ defmodule Exqlite.TimeoutSegfaultTest do
test "segfault", %{path: path} do
{:ok, conn} =
DBConnection.start_link(Exqlite.Connection,
busy_timeout: 50000,
busy_timeout: 50_000,
pool_size: 50,
timeout: 1,
database: path,
Expand All @@ -33,7 +33,7 @@ defmodule Exqlite.TimeoutSegfaultTest do
DBConnection.execute(conn, insert_query, [], timeout: 1)
catch
kind, reason ->
IO.inspect("#{inspect(kind)} #{inspect(reason)}", label: "Error")
IO.puts("Error: #{inspect(kind)} reason: #{inspect(reason)}")
end
end)
|> Stream.run()
Expand Down

0 comments on commit 1fc1de3

Please sign in to comment.