mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 17:57:55 +00:00

* Remove name key from Transmission * Remove name variable completely * remove name error from strings * Change entry title to default name
16 lines
287 B
Python
16 lines
287 B
Python
"""Tests for Transmission."""
|
|
|
|
OLD_MOCK_CONFIG_DATA = {
|
|
"name": "Transmission",
|
|
"host": "0.0.0.0",
|
|
"username": "user",
|
|
"password": "pass",
|
|
"port": 9091,
|
|
}
|
|
MOCK_CONFIG_DATA = {
|
|
"host": "0.0.0.0",
|
|
"username": "user",
|
|
"password": "pass",
|
|
"port": 9091,
|
|
}
|