Skip to content

Commit

Permalink
minor: fix typos in test names (#4344)
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb authored Nov 24, 2022
1 parent df8aa7a commit 22fdbcf
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions datafusion/sql/src/planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5957,10 +5957,10 @@ mod tests {
}

#[test]
fn test_ambiguous_coulmn_referece_in_on_join() {
let sql = "select p1.id, p1.age, p2.id
from person as p1
INNER JOIN person as p2
fn test_ambiguous_column_references_in_on_join() {
let sql = "select p1.id, p1.age, p2.id
from person as p1
INNER JOIN person as p2
ON id = 1";

let expected =
Expand All @@ -5974,10 +5974,10 @@ mod tests {
}

#[test]
fn test_ambiguous_coulmn_referece_with_in_using_join() {
let sql = "select p1.id, p1.age, p2.id
from person as p1
INNER JOIN person as p2
fn test_ambiguous_column_references_with_in_using_join() {
let sql = "select p1.id, p1.age, p2.id
from person as p1
INNER JOIN person as p2
using(id)";

let expected = "Projection: p1.id, p1.age, p2.id\
Expand Down

0 comments on commit 22fdbcf

Please sign in to comment.