summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-06 13:42:15 +0000
committernahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-06 13:42:15 +0000
commit8fc2fa55f975045fbba58ae79a53dc6e3b6c77c3 (patch)
tree0debb943f142f696d50c9a0f0975b00dbc2e5d6e
parentc47d29da45d6293a1a0a5684517b592ff6c93b9b (diff)
* lib/pp.rb (PPInspectTest#test_to_s_with_iv): rollback the previous
commit. [ruby-dev:22813] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5635 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--lib/pp.rb1
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 125988e24a..500b858dca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Feb 6 22:41:22 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp>
+
+ * lib/pp.rb (PPInspectTest#test_to_s_with_iv): rollback the previous
+ commit. [ruby-dev:22813]
+
Fri Feb 6 22:22:50 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp>
* lib/pp.rb (PPInspectTest#test_to_s_with_iv): remove instance
diff --git a/lib/pp.rb b/lib/pp.rb
index b0dcf8694b..81a453d9ab 100644
--- a/lib/pp.rb
+++ b/lib/pp.rb
@@ -541,7 +541,6 @@ if __FILE__ == $0
a.instance_eval { @a = nil }
result = PP.pp(a, '')
assert_equal("#{a.inspect}\n", result)
- a.instance_eval { remove_instance_variable("@a") }
end
def test_to_s_without_iv