File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2703,7 +2703,7 @@ func TestContextBeginIsolationLevel(t *testing.T) {
2703
2703
if err := row .Scan (& v ); err != nil {
2704
2704
dbt .Fatal (err )
2705
2705
}
2706
- // Because writer transaction wasn't commited yet, it should be available
2706
+ // Because writer transaction wasn't committed yet, it should be available
2707
2707
if v != 0 {
2708
2708
dbt .Errorf ("expected val to be 0, got %d" , v )
2709
2709
}
@@ -2717,7 +2717,7 @@ func TestContextBeginIsolationLevel(t *testing.T) {
2717
2717
if err := row .Scan (& v ); err != nil {
2718
2718
dbt .Fatal (err )
2719
2719
}
2720
- // Data written by writer transaction is already commited , it should be selectable
2720
+ // Data written by writer transaction is already committed , it should be selectable
2721
2721
if v != 1 {
2722
2722
dbt .Errorf ("expected val to be 1, got %d" , v )
2723
2723
}
You can’t perform that action at this time.
0 commit comments