Skip to content

Commit f247c62

Browse files
Fix name conflict with Nemo.integrate
Change `using Nemo` to `import Nemo` in test files to avoid exporting Nemo's `integrate` function which conflicts with SymbolicIntegration.integrate This resolves test failures in CompatHelper PRs #16 and #17 where the ambiguous `integrate` function caused UndefVarError. Affected files: - test/methods/risch/test_complex_fields.jl - test/methods/risch/test_bronstein_examples.jl - test/methods/risch/test_algorithm_internals.jl - test/methods/risch/bronstein_examples.jl 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 3a32cd9 commit f247c62

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

test/methods/risch/bronstein_examples.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using AbstractAlgebra
2-
using Nemo
2+
import Nemo
33
using SymbolicIntegration
44
SI = SymbolicIntegration
55

test/methods/risch/test_algorithm_internals.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ using Test
22
using SymbolicIntegration
33
using Symbolics
44
using AbstractAlgebra
5-
using Nemo
5+
import Nemo
66

77
@testset "[Risch] Algorithm Internals" begin
88
# Test internal algorithm components to ensure they work with the new API

test/methods/risch/test_bronstein_examples.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ using Test
22
using SymbolicIntegration
33
using Symbolics
44
using AbstractAlgebra
5-
using Nemo
5+
import Nemo
66

77
@testset "[Risch] Bronstein Algorithm Examples" begin
88
# Examples from "Symbolic Integration I: Transcendental Functions" by Manuel Bronstein

test/methods/risch/test_complex_fields.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ using Test
22
using SymbolicIntegration
33
using Symbolics
44
using AbstractAlgebra
5-
using Nemo
5+
import Nemo
66

77
@testset "[Risch] Complex Fields Operations" begin
88
# Note: These tests use internal SymbolicIntegration functions

0 commit comments

Comments
 (0)