Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Ticket #7504 (closed defect: fixed)

Opened 2 years ago

Last modified 1 year ago

[PATCH] Syntax error in native_sqlite3/in_memory_connection.rb

Reported by: aurelianito Assigned to: bitsweat
Priority: normal Milestone: 1.x
Component: ActiveRecord Version: edge
Severity: normal Keywords: tiny
Cc:

Description

There is an extra parenthesis at the end. Here is the patch:

Index: test/connections/native_sqlite3/in_memory_connection.rb =================================================================== --- test/connections/native_sqlite3/in_memory_connection.rb (revision 6138) +++ test/connections/native_sqlite3/in_memory_connection.rb (working copy) @@ -15,4 +15,4 @@

make_connection(ActiveRecord::Base, 'sqlite.sql') make_connection(Course, 'sqlite2.sql')

- load("#{File.dirname(FILE)}/../../fixtures/db_definitions/schema.rb")) +load("#{File.dirname(FILE)}/../../fixtures/db_definitions/schema.rb")

Attachments

sqlite3_in_memory_connection_syntax_error.diff (0.6 kB) - added by josh on 02/28/07 23:50:01.

Change History

02/28/07 23:50:01 changed by josh

  • attachment sqlite3_in_memory_connection_syntax_error.diff added.

02/28/07 23:50:21 changed by josh

  • keywords set to tiny.

06/05/07 02:35:18 changed by josh

  • owner changed from core to bitsweat.

06/05/07 04:32:11 changed by bitsweat

  • status changed from new to closed.
  • resolution set to fixed.

(In [6943]) Fix typo. Closes #7504 [aurelianito]