Skip to content

Commit 55a4670

Browse files
authored
Fix typos (#57)
1 parent ac1e615 commit 55a4670

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ If you still get lock timeout while adding / removing indexes, it might be for o
139139

140140
</details>
141141

142-
<details><summary id="safe_add_foreign_key">safe <code>add_foreign_key</code> (and <code>add_reference</code>)</summary>
142+
<details><summary id="safe_add_foreign_key">Safe <code>add_foreign_key</code> (and <code>add_reference</code>)</summary>
143143

144144
Adding a foreign key requires a `SHARE ROW EXCLUSIVE` lock, which **prevent writing in the tables** while the migration is running.
145145

test/add_foreign_key_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
require 'test_helper'
44

5-
class AddForeignKeyTest < MiniTest::Test
5+
class AddForeignKeyTest < Minitest::Test
66
DUMMY_MIGRATION_VERSION = 8128
77

88
def setup

test/create_table_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
require 'test_helper'
44

5-
class SafePgMigrationsTest < Minitest::Test
5+
class CreateTableTest < Minitest::Test
66
def setup
77
SafePgMigrations.instance_variable_set(:@config, nil)
88
@connection = ActiveRecord::Base.connection

test/useless_statement_logger_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
require 'test_helper'
44

5-
class UselessStatementLoggerTest < MiniTest::Unit::TestCase
5+
class UselessStatementLoggerTest < Minitest::Test
66
def setup
77
SafePgMigrations.instance_variable_set(:@config, nil)
88
@connection = ActiveRecord::Base.connection

0 commit comments

Comments
 (0)