Skip to content

Commit

Permalink
fix code smell
Browse files Browse the repository at this point in the history
  • Loading branch information
NogaNHS committed Dec 11, 2023
1 parent ab2975b commit d43ac37
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
from enums.repository_role import OrganisationRelationship
MOCK_GP_NAME = "Mock GP Practice"

NON_BSOL_ORGANISATION_RESPONSE = {
"Name": "Mock GP Practice",
"Name": MOCK_GP_NAME,
"Rels": {
"Rel": [
{
Expand All @@ -24,7 +25,7 @@


BSOL_ORGANISATION_RESPONSE = {
"Name": "Mock GP Practice",
"Name": MOCK_GP_NAME,
"Rels": {
"Rel": [
{
Expand All @@ -47,7 +48,7 @@


RE6_REL_ID_RESPONSE = {
"Name": "Mock GP Practice",
"Name": MOCK_GP_NAME,
"Rels": {
"Rel": [
{
Expand All @@ -68,4 +69,4 @@
},
}

NO_RELS_RESPONSE = {"Name": "Mock GP Practice"}
NO_RELS_RESPONSE = {"Name": MOCK_GP_NAME}

0 comments on commit d43ac37

Please sign in to comment.