summary refs log tree commit diff
path: root/crypto/test
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2013-11-01 20:15:39 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2013-11-01 20:15:39 +0700
commit526c4423a7cf69c2defd2b5f5071fa85bb0b1d27 (patch)
treeac6bfbf57ccacae6c5005f47646010306a7aa28d /crypto/test
parentClone bytes in constructor since it may be using a temp buffer in the ASN.1 p... (diff)
downloadBouncyCastle.NET-ed25519-526c4423a7cf69c2defd2b5f5071fa85bb0b1d27.tar.xz
Fix namespace
Diffstat (limited to 'crypto/test')
-rw-r--r--crypto/test/src/asn1/test/EnumeratedTest.cs12
1 files changed, 7 insertions, 5 deletions
diff --git a/crypto/test/src/asn1/test/EnumeratedTest.cs b/crypto/test/src/asn1/test/EnumeratedTest.cs

index d881e4c3e..29e90326b 100644 --- a/crypto/test/src/asn1/test/EnumeratedTest.cs +++ b/crypto/test/src/asn1/test/EnumeratedTest.cs
@@ -1,10 +1,12 @@ -namespace crypto.test.src.asn1.test -{ - using NUnit.Framework; +using System; + +using NUnit.Framework; - using Org.BouncyCastle.Asn1; - using Org.BouncyCastle.Utilities.Encoders; +using Org.BouncyCastle.Asn1; +using Org.BouncyCastle.Utilities.Encoders; +namespace Org.BouncyCastle.Asn1.Tests +{ /// <summary> /// Tests used to verify correct decoding of the ENUMERATED type. /// </summary>