renamed package

This commit is contained in:
qwjyh 2025-04-13 23:39:28 +09:00
parent fdc6c1a3fa
commit 5856f7a8f7
3 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
name = "MethodSimilarity" name = "MethodsSimilarity"
uuid = "a653e358-0bbe-4a80-8f0e-568b83ef5641" uuid = "a653e358-0bbe-4a80-8f0e-568b83ef5641"
authors = ["qwjyh <urataw421@gmail.com>"] authors = ["qwjyh <urataw421@gmail.com>"]
version = "0.1.0" version = "0.1.0"

View file

@ -1,4 +1,4 @@
module MethodSimilarity module MethodsSimilarity
using Statistics using Statistics
using LinearAlgebra using LinearAlgebra
@ -14,4 +14,4 @@ include("analyze.jl")
greet() = print("Hello World!") greet() = print("Hello World!")
end # module MethodSimilarity end # module MethodsSimilarity

View file

@ -1,7 +1,7 @@
using Test using Test
using MethodSimilarity using MethodsSimilarity
@testset "Choose" begin @testset "Choose" begin
itr = MethodSimilarity.Choose(2, 3) itr = MethodsSimilarity.Choose(2, 3)
@test collect(itr) == [(1, 2), (1, 3), (2, 3)] @test collect(itr) == [(1, 2), (1, 3), (2, 3)]
end end