Skip to content

Commit

Permalink
fix: Lint offenses
Browse files Browse the repository at this point in the history
  • Loading branch information
roktas committed Nov 8, 2023
1 parent dd41f19 commit 654c348
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/graphics/document_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ def setup
def teardown = setup

def test_class_relations
UNRELATED.each { |klass| refute(klass <= Document::Default) }
RELATED.each { |klass| assert(klass <= Document::Default) }
UNRELATED.each { |klass| refute_operator(klass, :<=, Document::Default) }
RELATED.each { |klass| assert_operator(klass, :<=, Document::Default) }
end

def test_method_missing_caching_with_block
Expand Down

0 comments on commit 654c348

Please sign in to comment.