diff --git a/test/test_polish_names.jl b/test/test_polish_names.jl index 21e2da6..f9be5ae 100644 --- a/test/test_polish_names.jl +++ b/test/test_polish_names.jl @@ -22,7 +22,7 @@ using DataFrames: DataFrame :aNameWithLoTsOfProblems, :aNameWithLoTsOfProblems1, :aNameWithLoTsOfProblems2, - :aNameABCWithLoTsOfProblemsDEF, + :aNameAbcWithLoTsOfProblemsDef, ]) @test polish_names(testDF) isa CleanTable @@ -45,10 +45,14 @@ using DataFrames: DataFrame " _aName with_loTsOfProblems", " _aName with_loTsOfProblems", " _aName with_loTsOfProblems_1", + " _aNameABC with_loTsOfProblemsDEF", ]; style=:camelCase, ) == Vector{Symbol}([ - :aNameWithLoTsOfProblems, :aNameWithLoTsOfProblems_1, :aNameWithLoTsOfProblems1 + :aNameWithLoTsOfProblems, + :aNameWithLoTsOfProblems_1, + :aNameWithLoTsOfProblems1, + :aNameABCWithLoTsOfProblemsDEF, ]) let err = nothing