Remove unnecessary f-string definition to make tests pass (#58)

This commit is contained in:
Teemu R 2020-05-13 14:50:45 +02:00 committed by GitHub
parent ed57563e8b
commit e37244de0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,7 +93,7 @@ async def test_brightness(dev):
assert "Setting brightness" in res.output
res = await runner.invoke(brightness, obj=dev)
assert f"Brightness: 12" in res.output
assert "Brightness: 12" in res.output
async def test_temperature(dev):