summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/soap/marshal/test_struct.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/soap/marshal/test_struct.rb b/test/soap/marshal/test_struct.rb
index d3c0a4e5e8..33975c31b0 100644
--- a/test/soap/marshal/test_struct.rb
+++ b/test/soap/marshal/test_struct.rb
@@ -6,8 +6,8 @@ module SOAP
module Marshal
-Foo1 = Struct.new("Foo1", :m)
-Foo2 = Struct.new(:m)
+Foo1 = ::Struct.new("Foo1", :m)
+Foo2 = ::Struct.new(:m)
class Foo3
attr_accessor :m
end