Software /
code /
prosody
Changeset
10495:8ea685ec0979
configmanager tests: Split long line
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 09 Dec 2019 11:57:10 +0000 |
parents | 10494:69e55b03d5cf |
children | 10496:ec67425dedf1 |
files | spec/core_configmanager_spec.lua |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/spec/core_configmanager_spec.lua Sun Dec 08 17:48:37 2019 +0100 +++ b/spec/core_configmanager_spec.lua Mon Dec 09 11:57:10 2019 +0000 @@ -9,7 +9,9 @@ configmanager.set("*", "testkey1", 321); assert.are.equal(321, configmanager.get("*", "testkey1"), "Retrieving a set global key"); - assert.are.equal(321, configmanager.get("example.com", "testkey1"), "Retrieving a set key of undefined host, of which only a globally set one exists"); + assert.are.equal(321, configmanager.get("example.com", "testkey1"), + "Retrieving a set key of undefined host, of which only a globally set one exists" + ); configmanager.set("example.com", ""); -- Creates example.com host in config assert.are.equal(321, configmanager.get("example.com", "testkey1"), "Retrieving a set key, of which only a globally set one exists");