Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

0.5.1 (unreleased)
------------------

- fix whitespace duplication when using .insert()

0.5 (2015-01-31)
----------------

Expand Down
4 changes: 2 additions & 2 deletions tests/test_bounding_box.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ def test_bounding_box_with_proxy_list():


def test_bounding_box_of_attribute_with_proxy_list():
# assert ((1, 1), (32, 0)) == RED.absolute_bounding_box
# assert ((1, 1), (32, 0)) == RED.class_.absolute_bounding_box
assert ((1, 1), (32, 0)) == RED.absolute_bounding_box
assert ((1, 1), (32, 0)) == RED.class_.absolute_bounding_box
assert ((2, 5), (5, 7)) == RED.class_.value.get_absolute_bounding_box_of_attribute(0)
assert ((6, 5), (9, 17)) == RED.class_.value.get_absolute_bounding_box_of_attribute(1)
assert ((9, 18), (10, 0)) == RED.class_.value.get_absolute_bounding_box_of_attribute(2)
Expand Down