@@ -383,9 +383,7 @@ def test_string_keys(self):
383383 diff = list (differ .diff_tables (self .a , self .b ))
384384 self .assertEqual (diff , [("-" , (str (self .new_uuid ), "This one is different" ))])
385385
386- self .connection .query (
387- self .src_table .insert_row ('unexpected' , '<-- this bad value should not break us' )
388- )
386+ self .connection .query (self .src_table .insert_row ("unexpected" , "<-- this bad value should not break us" ))
389387
390388 self .assertRaises (ValueError , list , differ .diff_tables (self .a , self .b ))
391389
@@ -421,7 +419,7 @@ def setUp(self):
421419 src_table .create (),
422420 src_table .insert_rows (values ),
423421 table (self .table_dst_path ).create (src_table ),
424- src_table .insert_row (self .new_alphanum , ' This one is different' ),
422+ src_table .insert_row (self .new_alphanum , " This one is different" ),
425423 commit ,
426424 ]
427425
@@ -491,7 +489,7 @@ def test_varying_alphanum_keys(self):
491489 self .assertEqual (diff , [("-" , (str (self .new_alphanum ), "This one is different" ))])
492490
493491 self .connection .query (
494- self .src_table .insert_row (' @@@' , ' <-- this bad value should not break us' ),
492+ self .src_table .insert_row (" @@@" , " <-- this bad value should not break us" ),
495493 commit ,
496494 )
497495
@@ -548,13 +546,15 @@ def setUp(self):
548546
549547 self .null_uuid = uuid .uuid1 (32132131 )
550548
551- self .connection .query ([
552- src_table .create (),
553- src_table .insert_rows (values ),
554- table (self .table_dst_path ).create (src_table ),
555- src_table .insert_row (self .null_uuid , None ),
556- commit ,
557- ])
549+ self .connection .query (
550+ [
551+ src_table .create (),
552+ src_table .insert_rows (values ),
553+ table (self .table_dst_path ).create (src_table ),
554+ src_table .insert_row (self .null_uuid , None ),
555+ commit ,
556+ ]
557+ )
558558
559559 self .a = _table_segment (self .connection , self .table_src_path , "id" , "text_comment" , case_sensitive = False )
560560 self .b = _table_segment (self .connection , self .table_dst_path , "id" , "text_comment" , case_sensitive = False )
@@ -576,9 +576,9 @@ def setUp(self):
576576 self .connection .query (
577577 [
578578 src_table .create (),
579- src_table .insert_row (uuid .uuid1 (1 ), '1' ),
579+ src_table .insert_row (uuid .uuid1 (1 ), "1" ),
580580 table (self .table_dst_path ).create (src_table ),
581- src_table .insert_row (self .null_uuid , None ), # Add a row where a column has NULL value
581+ src_table .insert_row (self .null_uuid , None ), # Add a row where a column has NULL value
582582 commit ,
583583 ]
584584 )
0 commit comments