@@ -578,7 +578,7 @@ def test_batch_insert_w_commit_timestamp(sessions_database, not_postgres):
578578 assert not deleted
579579
580580
581- @_helpers .retry_mabye_aborted_txn
581+ @_helpers .retry_maybe_aborted_txn
582582def test_transaction_read_and_insert_then_rollback (
583583 sessions_database ,
584584 ot_exporter ,
@@ -687,7 +687,7 @@ def test_transaction_read_and_insert_then_rollback(
687687 )
688688
689689
690- @_helpers .retry_mabye_conflict
690+ @_helpers .retry_maybe_conflict
691691def test_transaction_read_and_insert_then_exception (sessions_database ):
692692 class CustomException (Exception ):
693693 pass
@@ -714,7 +714,7 @@ def _transaction_read_then_raise(transaction):
714714 assert rows == []
715715
716716
717- @_helpers .retry_mabye_conflict
717+ @_helpers .retry_maybe_conflict
718718def test_transaction_read_and_insert_or_update_then_commit (
719719 sessions_database ,
720720 sessions_to_delete ,
@@ -771,8 +771,8 @@ def _generate_insert_returning_statement(row, database_dialect):
771771 return f"INSERT INTO { table } ({ column_list } ) VALUES ({ row_data } ) { returning } "
772772
773773
774- @_helpers .retry_mabye_conflict
775- @_helpers .retry_mabye_aborted_txn
774+ @_helpers .retry_maybe_conflict
775+ @_helpers .retry_maybe_aborted_txn
776776def test_transaction_execute_sql_w_dml_read_rollback (
777777 sessions_database ,
778778 sessions_to_delete ,
@@ -809,7 +809,7 @@ def test_transaction_execute_sql_w_dml_read_rollback(
809809 # [END spanner_test_dml_rollback_txn_not_committed]
810810
811811
812- @_helpers .retry_mabye_conflict
812+ @_helpers .retry_maybe_conflict
813813def test_transaction_execute_update_read_commit (sessions_database , sessions_to_delete ):
814814 # [START spanner_test_dml_read_your_writes]
815815 sd = _sample_data
@@ -838,7 +838,7 @@ def test_transaction_execute_update_read_commit(sessions_database, sessions_to_d
838838 # [END spanner_test_dml_read_your_writes]
839839
840840
841- @_helpers .retry_mabye_conflict
841+ @_helpers .retry_maybe_conflict
842842def test_transaction_execute_update_then_insert_commit (
843843 sessions_database , sessions_to_delete
844844):
@@ -870,7 +870,7 @@ def test_transaction_execute_update_then_insert_commit(
870870 # [END spanner_test_dml_with_mutation]
871871
872872
873- @_helpers .retry_mabye_conflict
873+ @_helpers .retry_maybe_conflict
874874@pytest .mark .skipif (
875875 _helpers .USE_EMULATOR , reason = "Emulator does not support DML Returning."
876876)
@@ -901,7 +901,7 @@ def test_transaction_execute_sql_dml_returning(
901901 sd ._check_rows_data (rows )
902902
903903
904- @_helpers .retry_mabye_conflict
904+ @_helpers .retry_maybe_conflict
905905@pytest .mark .skipif (
906906 _helpers .USE_EMULATOR , reason = "Emulator does not support DML Returning."
907907)
@@ -929,7 +929,7 @@ def test_transaction_execute_update_dml_returning(
929929 sd ._check_rows_data (rows )
930930
931931
932- @_helpers .retry_mabye_conflict
932+ @_helpers .retry_maybe_conflict
933933@pytest .mark .skipif (
934934 _helpers .USE_EMULATOR , reason = "Emulator does not support DML Returning."
935935)
0 commit comments