Skip to content

Commit

Permalink
Fix test: compare integer to 0 instead of map
Browse files Browse the repository at this point in the history
  • Loading branch information
preciz committed Aug 3, 2024
1 parent 047a417 commit 22467f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/finch/http2/integration_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ defmodule Finch.HTTP2.IntegrationTest do
try do
assert {:ok, response} = Finch.build(:get, url) |> Finch.request(TestFinch)
assert response.body == "Hello world!"
assert File.stat!(log_file) > 0
assert File.stat!(log_file).size > 0
after
File.rm!(log_file)
System.delete_env("SSLKEYLOGFILE")
Expand Down

0 comments on commit 22467f6

Please sign in to comment.