diff --git a/test/Memory_Tests.jl b/test/Memory_Tests.jl index 7c74f2c..efd7278 100644 --- a/test/Memory_Tests.jl +++ b/test/Memory_Tests.jl @@ -437,8 +437,8 @@ using SafeTestsets @test match(chunk, a = :a) @test !match(chunk, a = :b) @test !match(chunk, d = :b) - @test match(chunk,!=,==,a = :b,b = :b) - @test !match(chunk,!=,==,a = :a,b = :b) + @test match(chunk, !=, ==, a = :b, b = :b) + @test !match(chunk, !=, ==, a = :a, b = :b) @test match(chunk, a = :a; check_value = false) @test match(chunk, a = :b; check_value = false) diff --git a/test/Utility Tests.jl b/test/Utility Tests.jl index 021ecd9..ce817dd 100644 --- a/test/Utility Tests.jl +++ b/test/Utility Tests.jl @@ -13,7 +13,7 @@ using SafeTestsets @test chunks[idx].slots.object == :bird @test chunks[idx].slots.value == :True - idx = find_index(actr,==,!=; attribute = :locomotion, value = :swimming) + idx = find_index(actr, ==, !=; attribute = :locomotion, value = :swimming) @test chunks[idx].slots.value == :flying @test chunks[idx].slots.object == :bird @test chunks[idx].slots.attribute == :locomotion @@ -30,7 +30,7 @@ using SafeTestsets chunk_set ) - idx = find_indices(actr,==,!=; attribute = :category, value = :bird) + idx = find_indices(actr, ==, !=; attribute = :category, value = :bird) @test length(idx) == 4 chunk_set = chunks[idx] @test all(x -> x.slots.attribute == :category && x.slots.value != :bird, chunk_set) diff --git a/test/Utility_Tests.jl b/test/Utility_Tests.jl index 6731313..f93c0d8 100644 --- a/test/Utility_Tests.jl +++ b/test/Utility_Tests.jl @@ -13,7 +13,7 @@ using SafeTestsets @test chunks[idx].slots.object == :bird @test chunks[idx].slots.value == :True - idx = find_index(actr,==,!=; attribute = :locomotion, value = :swimming) + idx = find_index(actr, ==, !=; attribute = :locomotion, value = :swimming) @test chunks[idx].slots.value == :flying @test chunks[idx].slots.object == :bird @test chunks[idx].slots.attribute == :locomotion @@ -34,7 +34,7 @@ using SafeTestsets chunk_set ) - idx = find_indices(actr,==,!=; attribute = :category, value = :bird) + idx = find_indices(actr, ==, !=; attribute = :category, value = :bird) @test length(idx) == 4 chunk_set = chunks[idx] @test all(x -> x.slots.attribute == :category && x.slots.value != :bird, chunk_set)