Skip to content

Commit b961e24

Browse files
Fix tests to properly import Tables and IteratorInterfaceExtensions
Since Tables.jl and IteratorInterfaceExtensions.jl were moved to an extension, the test files need to import them directly rather than trying to import them from RecursiveArrayTools. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 71d00e6 commit b961e24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/tabletraits.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using RecursiveArrayTools, Random, Test
1+
using RecursiveArrayTools, Random, Test, Tables, IteratorInterfaceExtensions
22

33
include("testutils.jl")
44

test/testutils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using RecursiveArrayTools
2-
using RecursiveArrayTools: Tables, IteratorInterfaceExtensions
2+
using Tables, IteratorInterfaceExtensions
33

44
# Test Tables interface with row access + IteratorInterfaceExtensions for QueryVerse
55
# (see https://tables.juliadata.org/stable/#Testing-Tables.jl-Implementations)

0 commit comments

Comments
 (0)