Skip to content

Commit

Permalink
got to the password bluesky stomp issue
Browse files Browse the repository at this point in the history
  • Loading branch information
stan-dot committed Oct 16, 2024
1 parent ea9dff8 commit 59226b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit_tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import pytest
import yaml
from bluesky_stomp.models import BasicAuthentication
from pydantic import BaseModel, Field
from pydantic import BaseModel, Field, Secret

from blueapi.config import ApplicationConfig, ConfigLoader
from blueapi.utils import InvalidConfigError
Expand Down Expand Up @@ -251,7 +251,7 @@ def test_config_yaml_parsed(temp_yaml_config_file):
"stomp": {
"host": "localhost",
"port": 61613,
"auth": None,
"auth": {"username": "guest", "password": Secret("guest")},
},
"env": {
"sources": [
Expand All @@ -267,7 +267,7 @@ def test_config_yaml_parsed(temp_yaml_config_file):
"stomp": {
"host": "https://rabbitmq.diamond.ac.uk",
"port": 61613,
"auth": None,
"auth": {"username": "guest", "password": "guest"},
},
"env": {
"sources": [
Expand Down

0 comments on commit 59226b9

Please sign in to comment.