Skip to content

Commit c6e3d33

Browse files
committed
fix typo
Signed-off-by: Matthias Büchse <[email protected]>
1 parent 70d7d4c commit c6e3d33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/iaas/flavor-naming/flavor-names-openstack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class Container:
135135
>>>> container = Container()
136136
>>>> container.add_function('pi', lambda _: 22/7)
137137
>>>> container.add_function('pi_squared', lambda c: c.pi * c.pi)
138-
>>>> assert c.pi_squared == 22/7 * 22/7
138+
>>>> assert container.pi_squared == 22/7 * 22/7
139139
"""
140140
def __init__(self):
141141
self._values = {}

0 commit comments

Comments
 (0)