diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2013-11-01 20:15:39 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2013-11-01 20:15:39 +0700 |
commit | 526c4423a7cf69c2defd2b5f5071fa85bb0b1d27 (patch) | |
tree | ac6bfbf57ccacae6c5005f47646010306a7aa28d | |
parent | Clone bytes in constructor since it may be using a temp buffer in the ASN.1 p... (diff) | |
download | BouncyCastle.NET-ed25519-526c4423a7cf69c2defd2b5f5071fa85bb0b1d27.tar.xz |
Fix namespace
-rw-r--r-- | crypto/test/src/asn1/test/EnumeratedTest.cs | 12 |
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> |