File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,13 +37,13 @@ class VenueTest(BaseTest, unittest.TestCase):
3737 def setUp (self ):
3838 self .location = telegram .Location (longitude = 1. , latitude = 0. )
3939 self .title = 'title'
40- self .address = 'address '
40+ self ._address = '_address '
4141 self .foursquare_id = 'foursquare id'
4242
4343 self .json_dict = {
4444 'location' : self .location .to_dict (),
4545 'title' : self .title ,
46- 'address' : self .address ,
46+ 'address' : self ._address ,
4747 'foursquare_id' : self .foursquare_id
4848 }
4949
@@ -52,7 +52,7 @@ def test_sticker_de_json(self):
5252
5353 self .assertTrue (isinstance (sticker .location , telegram .Location ))
5454 self .assertEqual (sticker .title , self .title )
55- self .assertEqual (sticker .address , self .address )
55+ self .assertEqual (sticker .address , self ._address )
5656 self .assertEqual (sticker .foursquare_id , self .foursquare_id )
5757
5858 def test_sticker_to_json (self ):
You can’t perform that action at this time.
0 commit comments