Skip to content

Commit

Permalink
lint testing file
Browse files Browse the repository at this point in the history
  • Loading branch information
ydamit committed Sep 14, 2023
1 parent 8006a86 commit 2432ba7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_action_builder/test_action_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ def setUp(self, m):
f"action_builder:{self.fake_entity_id}"
]

self.fake_tag_id = 'fake_tag_id'
self.fake_tagging_id = 'fake_tagging_id'
self.fake_tag_id = "fake_tag_id"
self.fake_tagging_id = "fake_tagging_id"
self.fake_remove_tag_resp = {
"message": "Tag has been removed from Taggable Logbook"
}
Expand Down Expand Up @@ -372,7 +372,7 @@ def test_add_section_field_values_to_record(self, m):
def test_remove_tagging(self, m):
m.delete(
f"{self.api_url}/tags/{self.fake_tag_id}/taggings/{self.fake_tagging_id}",
json=self.fake_remove_tag_resp
json=self.fake_remove_tag_resp,
)
remove_tag_resp = self.bldr.remove_tagging(
tag_id=self.fake_tag_id, tagging_id=self.fake_tagging_id
Expand Down

0 comments on commit 2432ba7

Please sign in to comment.