Skip to content

Commit

Permalink
test: ✅ 修复不符合严格模式的测试代码
Browse files Browse the repository at this point in the history
  • Loading branch information
ARCJ137442 committed Aug 27, 2023
1 parent bc9647d commit 280fac7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_construction.jl
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
@test eI == ExtImage(2, A,B,C) # 非唯一性
@test iI == IntImage(3, C,B,A) # 非唯一性
@test eI.relation_index == 2 && iI.relation_index == 3
@test ExtImage(1, A,B,C) /(A, , B, C) == eI == ExtImage(2, A,B,C) ExtImage(2, A,C,B) # 唯一相等性
@test IntImage(1, C,B,A) \(C, B, , A) == iI == IntImage(3, C,B,A) IntImage(3, C,A,B) # 唯一相等性
@test ExtImage(4, A,B,C) /(A, , B, C) == eI == ExtImage(2, A,B,C) ExtImage(2, A,C,B) # 唯一相等性
@test IntImage(4, C,B,A) \(C, B, , A) == iI == IntImage(3, C,B,A) IntImage(3, C,A,B) # 唯一相等性

# 乘积

Expand Down

0 comments on commit 280fac7

Please sign in to comment.