Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DGaffney committed Jan 31, 2024
1 parent 3431663 commit 436d10f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/models/bot/alegre_v2_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,9 @@ def teardown
test "should safe_get_sync" do
pm1 = create_project_media team: @team, media: create_uploaded_audio
WebMock.stub_request(:post, "#{CheckConfig.get('alegre_host')}/similarity/sync/audio").to_return(body: '{}')
assert_equal {}, Bot::Alegre.safe_get_sync(pm1, "audio", {})
expected = {}
actual = Bot::Alegre.safe_get_sync(pm1, "audio", {})
assert_equal expected, actual
end

test "should run delete request" do
Expand Down

0 comments on commit 436d10f

Please sign in to comment.