We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5ac5fc commit f74d75cCopy full SHA for f74d75c
test/test_entry.rb
@@ -56,14 +56,14 @@ def test_to_h
56
end
57
58
def test_equal_operator
59
- @entry_two = Net::LDAP::Entry.new 'cn=Barbara,o=corp'
60
- assert_equal @entry, @entry_two
+ entry_two = Net::LDAP::Entry.new 'cn=Barbara,o=corp'
+ assert_equal @entry, entry_two
61
62
@entry['sn'] = 'Jensen'
63
- assert_not_equal @entry, @entry_two
+ assert_not_equal @entry, entry_two
64
65
- @entry_two['sn'] = 'Jensen'
66
+ entry_two['sn'] = 'Jensen'
67
68
69
0 commit comments