Skip to content

Commit

Permalink
Merge pull request #31 from SciML/aj/fact
Browse files Browse the repository at this point in the history
fix factorial test
  • Loading branch information
anandijain committed Jun 28, 2021
2 parents c531ee0 + 10526e1 commit ef5e495
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MathML"
uuid = "abcecc63-2b08-419c-80c4-c63dca6fa478"
authors = ["anand <anandj@uchicago.edu> and contributors"]
version = "0.1.6"
version = "0.1.7"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand Down
2 changes: 1 addition & 1 deletion test/parse.jl
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ str = """

# factorial
str = "<apply><factorial/><ci>x</ci></apply>"
@test isequal(MathML.parse_str(str), SpecialFunctions.gamma(1 + x))
@test isequal(MathML.parse_str(str), factorial(x))

str = "<apply><factorial/><cn>5</cn></apply>"
@test MathML.parse_str(str) == 120
Expand Down

2 comments on commit ef5e495

@anandijain
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/39809

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.7 -m "<description of version>" ef5e4952262f354d15517b07b88462405012c279
git push origin v0.1.7

Please sign in to comment.