Skip to content

Commit

Permalink
fix for old version of Julia
Browse files Browse the repository at this point in the history
  • Loading branch information
bvdmitri committed Sep 29, 2022
1 parent 0af5d92 commit 31db1fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using TinyHugeNumbers
using Test

@testset "TinyHugeNumbers.jl" begin
import TinyHugeNumbers: TinyNumber, HugeNumber

import TinyHugeNumbers: TinyNumber, HugeNumber
struct ArbitraryFloatType <: AbstractFloat end

struct ArbitraryFloatType <: AbstractFloat end
@testset "TinyHugeNumbers.jl" begin

Base.eps(::Type{ ArbitraryFloatType }) = 0.1
Base.convert(::Type{ ArbitraryFloatType }, ::Integer) = ArbitraryFloatType() # for testing
Expand Down

2 comments on commit 31db1fe

@bvdmitri
Copy link
Member Author

Choose a reason for hiding this comment

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

@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/69196

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 v1.0.0 -m "<description of version>" 31db1fec7fe727d250024449e97f5f8fd2cbaf03
git push origin v1.0.0

Please sign in to comment.