Skip to content

Commit

Permalink
small fix for table name in test
Browse files Browse the repository at this point in the history
  • Loading branch information
sufleR committed Dec 9, 2015
1 parent ae77181 commit 253e61b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/sql_query_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
describe '#partial' do
let(:file_name) { :get_player_by_email_with_template }
it 'resolves partials as parts of sql queries' do
expect(query.sql).to eq("SELECT *\nFROM players\nWHERE users.email = '[email protected]'\n\n")
expect(query.sql).to eq("SELECT *\nFROM players\nWHERE players.email = '[email protected]'\n\n")
end
end
end

0 comments on commit 253e61b

Please sign in to comment.