diff --git a/Project.toml b/Project.toml index f76dd3f..cad0614 100644 --- a/Project.toml +++ b/Project.toml @@ -4,12 +4,15 @@ authors = ["Seth Axen ", "Mateusz Baran "The Translation group", - :Points => [p1, p2, p3], + :Points => [g1, g2, g3], :Vectors => [X1, X2, X3], :Functions => [compose, exp, inv, log, show, is_identity], ) diff --git a/test/runtests.jl b/test/runtests.jl index 3e6bd75..56ae699 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -6,9 +6,9 @@ using LieGroupsTestSuite function include_test(path) @info "Testing $path" - @time include(path) # show basic timing, (this will print a newline at end) + @time include(path) # show basic timing, (this prints a newline at end) end @testset "Lie Groups" begin - include_test("groups/translation.jl") + include_test("groups/test_translation_group.jl") end