Skip to content

Commit

Permalink
temp: minor test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ormsbee committed Oct 22, 2024
1 parent 0f7612f commit be90091
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1110,8 +1110,8 @@ def test_library_paste_clipboard(self):
self._get_library_block_asset(pasted_usage_key, "static/hello.txt")

# Compare the two text files
src_data = self.client.get("/library_assets/blocks/{usage_key}/static/hello.txt").content
dest_data = self.client.get("/library_assets/blocks/{pasted_usage_key}/static/hello.txt").content
src_data = self.client.get(f"/library_assets/blocks/{usage_key}/static/hello.txt").content
dest_data = self.client.get(f"/library_assets/blocks/{pasted_usage_key}/static/hello.txt").content
assert src_data == dest_data

# Check that the new block was created after the paste and it's content matches
Expand Down

0 comments on commit be90091

Please sign in to comment.