Skip to content

Commit 278b6ce

Browse files
author
Jon Wayne Parrott
authored
Swap the album titles to be consistent with other samples [(googleapis#1035)](GoogleCloudPlatform/python-docs-samples#1035)
1 parent 8a35c27 commit 278b6ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/samples/snippets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ def insert_data(instance_id, database_id):
7979
table='Albums',
8080
columns=('SingerId', 'AlbumId', 'AlbumTitle',),
8181
values=[
82-
(1, 1, u'Go, Go, Go'),
83-
(1, 2, u'Total Junk'),
82+
(1, 1, u'Total Junk'),
83+
(1, 2, u'Go, Go, Go'),
8484
(2, 1, u'Green'),
8585
(2, 2, u'Forever Hold Your Peace'),
8686
(2, 3, u'Terrified')])

0 commit comments

Comments
 (0)