Skip to content

Commit dabe6a1

Browse files
committed
Merge branch 'master' of https://github.com/gustaphe/Polynomials.jl into master
2 parents e1aa30c + 9679c4e commit dabe6a1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
1212

1313
[compat]
1414
Intervals = "0.5, 1.0, 1.3"
15-
RecipesBase = "0.7, 0.8, 1"
1615
OffsetArrays = "1"
16+
RecipesBase = "0.7, 0.8, 1"
1717
julia = "1"
1818

1919
[extras]

test/StandardBasis.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -807,6 +807,7 @@ end
807807
@test printpoly_to_string(P([1,2,3], "y"), descending_powers = true) == "3*y^2 + 2*y + 1"
808808
@test printpoly_to_string(P([2, 3, 1], :z), descending_powers = true, offset = -2) == "1 + 3*z^-1 + 2*z^-2"
809809
@test printpoly_to_string(P([-1, 0, 1], :z), offset = -1, descending_powers = true) == "z - z^-1"
810+
@test printpoly_to_string(P([complex(1,1),complex(1,-1)]),MIME"text/latex"()) == "(1 + 1i) + (1 - 1i)\\cdot x"
810811
end
811812
end
812813

0 commit comments

Comments
 (0)