diff options
author | lain <lain@soykaf.club> | 2020-05-13 13:38:32 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-05-13 13:38:32 +0000 |
commit | da550be066a15108ceef7874c3b2549c049a7f88 (patch) | |
tree | 8b9f59c625da682d54c462ee31c125bd4e444814 /test/config/config_db_test.exs | |
parent | 6706cdce65f8b2dda55380dbfdad5e41e600af2d (diff) | |
parent | fbe3d3aa5fe07a89c52a16b7bf0626e323366597 (diff) | |
download | pleroma-da550be066a15108ceef7874c3b2549c049a7f88.tar.gz pleroma-da550be066a15108ceef7874c3b2549c049a7f88.zip |
Merge branch 'fix/1742-random-failing-tests' into 'develop'
Fix sporadically failing tests
See merge request pleroma/pleroma!2524
Diffstat (limited to 'test/config/config_db_test.exs')
-rw-r--r-- | test/config/config_db_test.exs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/test/config/config_db_test.exs b/test/config/config_db_test.exs index 6b0e7b4b6..a8e947365 100644 --- a/test/config/config_db_test.exs +++ b/test/config/config_db_test.exs @@ -43,11 +43,9 @@ defmodule Pleroma.ConfigDBTest do {ConfigDB.from_string(saved.key), ConfigDB.from_binary(saved.value)} ] - assert config[:quack] == [ - level: :info, - meta: [:none], - webhook_url: "https://hooks.slack.com/services/KEY/some_val" - ] + assert config[:quack][:level] == :info + assert config[:quack][:meta] == [:none] + assert config[:quack][:webhook_url] == "https://hooks.slack.com/services/KEY/some_val" end describe "update_or_create/1" do |