From 77cf9f12979d7f6412b31f5b8113f492d0526410 Mon Sep 17 00:00:00 2001 From: Glenn Moynihan Date: Thu, 22 Apr 2021 14:52:40 +0100 Subject: [PATCH] Update AxisKeys --- Project.toml | 2 +- dev/FeatureTransforms | 2 +- test/featuretransforms.jl | 9 +++------ 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/Project.toml b/Project.toml index af733ad..4e9e9d8 100644 --- a/Project.toml +++ b/Project.toml @@ -14,7 +14,7 @@ ReadOnlyArrays = "988b38a3-91fc-5605-94a2-ee2116b3bd83" [compat] AutoHashEquals = "0.2" -AxisKeys = "0.1" +AxisKeys = "0.1.16" FeatureTransforms = "0.3" Impute = "0.6" NamedDims = "0.2" diff --git a/dev/FeatureTransforms b/dev/FeatureTransforms index 5da6ca5..11e9117 160000 --- a/dev/FeatureTransforms +++ b/dev/FeatureTransforms @@ -1 +1 @@ -Subproject commit 5da6ca58fc2fb3969431ef1df6fcc9d22a09f24e +Subproject commit 11e9117d919f385bbcb44f6986415f9092f34a90 diff --git a/test/featuretransforms.jl b/test/featuretransforms.jl index eab0cb3..cdb0ae4 100644 --- a/test/featuretransforms.jl +++ b/test/featuretransforms.jl @@ -222,8 +222,7 @@ @test r isa KeyedDataset @test isequal(r, expected) - # https://github.com/mcabbott/AxisKeys.jl/issues/61 - @test_broken !isequal(ds, expected) + @test !isequal(ds, expected) end @testset "using pattern" begin @@ -244,8 +243,7 @@ @test r isa KeyedDataset @test isequal(r, expected) - # https://github.com/mcabbott/AxisKeys.jl/issues/61 - @test_broken !isequal(ds, expected) + @test !isequal(ds, expected) end @testset "using symbol" begin @@ -266,8 +264,7 @@ @test r isa KeyedDataset @test isequal(r, expected) - # https://github.com/mcabbott/AxisKeys.jl/issues/61 - @test_broken !isequal(ds, expected) + @test !isequal(ds, expected) end end