summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2018-12-29 21:43:31 +0100
committerIlya Etingof <etingof@gmail.com>2018-12-29 21:44:17 +0100
commitdf6fc9a8aae16e32f60a1ff1f42a52c8c344a993 (patch)
tree65688a5c5441d1a4594b6c15a3cded6e2a97aca1 /tests
parenta4b30dcb6c34e303129498d697fb3cd805c1e48d (diff)
downloadpyasn1-git-df6fc9a8aae16e32f60a1ff1f42a52c8c344a993.tar.gz
Release 0.4.5v0.4.5
Also extend copyright to the year 2019
Diffstat (limited to 'tests')
-rw-r--r--tests/__main__.py2
-rw-r--r--tests/base.py2
-rw-r--r--tests/codec/__main__.py2
-rw-r--r--tests/codec/ber/__main__.py2
-rw-r--r--tests/codec/ber/test_decoder.py2
-rw-r--r--tests/codec/ber/test_encoder.py2
-rw-r--r--tests/codec/cer/__main__.py2
-rw-r--r--tests/codec/cer/test_decoder.py2
-rw-r--r--tests/codec/cer/test_encoder.py2
-rw-r--r--tests/codec/der/__main__.py2
-rw-r--r--tests/codec/der/test_decoder.py2
-rw-r--r--tests/codec/der/test_encoder.py2
-rw-r--r--tests/codec/native/__main__.py2
-rw-r--r--tests/codec/native/test_decoder.py2
-rw-r--r--tests/codec/native/test_encoder.py2
-rw-r--r--tests/compat/__main__.py2
-rw-r--r--tests/compat/test_binary.py2
-rw-r--r--tests/compat/test_integer.py2
-rw-r--r--tests/compat/test_octets.py2
-rw-r--r--tests/test_debug.py2
-rw-r--r--tests/type/__main__.py2
-rw-r--r--tests/type/test_char.py2
-rw-r--r--tests/type/test_constraint.py2
-rw-r--r--tests/type/test_namedtype.py2
-rw-r--r--tests/type/test_namedval.py2
-rw-r--r--tests/type/test_opentype.py2
-rw-r--r--tests/type/test_tag.py2
-rw-r--r--tests/type/test_univ.py2
-rw-r--r--tests/type/test_useful.py2
29 files changed, 29 insertions, 29 deletions
diff --git a/tests/__main__.py b/tests/__main__.py
index 55ccf39..14ef28a 100644
--- a/tests/__main__.py
+++ b/tests/__main__.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
try:
diff --git a/tests/base.py b/tests/base.py
index 645b256..07f06dc 100644
--- a/tests/base.py
+++ b/tests/base.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
diff --git a/tests/codec/__main__.py b/tests/codec/__main__.py
index 8ca201a..7a4cf20 100644
--- a/tests/codec/__main__.py
+++ b/tests/codec/__main__.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
try:
diff --git a/tests/codec/ber/__main__.py b/tests/codec/ber/__main__.py
index aca8493..59c0c2b 100644
--- a/tests/codec/ber/__main__.py
+++ b/tests/codec/ber/__main__.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
try:
diff --git a/tests/codec/ber/test_decoder.py b/tests/codec/ber/test_decoder.py
index e8e17f0..8b6d590 100644
--- a/tests/codec/ber/test_decoder.py
+++ b/tests/codec/ber/test_decoder.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/codec/ber/test_encoder.py b/tests/codec/ber/test_encoder.py
index 62ea9cc..26819bd 100644
--- a/tests/codec/ber/test_encoder.py
+++ b/tests/codec/ber/test_encoder.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/codec/cer/__main__.py b/tests/codec/cer/__main__.py
index 043de87..e3643a1 100644
--- a/tests/codec/cer/__main__.py
+++ b/tests/codec/cer/__main__.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
try:
diff --git a/tests/codec/cer/test_decoder.py b/tests/codec/cer/test_decoder.py
index c0aeb78..d4e00ab 100644
--- a/tests/codec/cer/test_decoder.py
+++ b/tests/codec/cer/test_decoder.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/codec/cer/test_encoder.py b/tests/codec/cer/test_encoder.py
index fd50350..d9d9212 100644
--- a/tests/codec/cer/test_encoder.py
+++ b/tests/codec/cer/test_encoder.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/codec/der/__main__.py b/tests/codec/der/__main__.py
index b253abb..bfa4ee0 100644
--- a/tests/codec/der/__main__.py
+++ b/tests/codec/der/__main__.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
try:
diff --git a/tests/codec/der/test_decoder.py b/tests/codec/der/test_decoder.py
index 554e2e6..a76c435 100644
--- a/tests/codec/der/test_decoder.py
+++ b/tests/codec/der/test_decoder.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/codec/der/test_encoder.py b/tests/codec/der/test_encoder.py
index 4c58df2..75835f2 100644
--- a/tests/codec/der/test_encoder.py
+++ b/tests/codec/der/test_encoder.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/codec/native/__main__.py b/tests/codec/native/__main__.py
index efd4303..640f586 100644
--- a/tests/codec/native/__main__.py
+++ b/tests/codec/native/__main__.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
try:
diff --git a/tests/codec/native/test_decoder.py b/tests/codec/native/test_decoder.py
index 7bdfff8..654e2cc 100644
--- a/tests/codec/native/test_decoder.py
+++ b/tests/codec/native/test_decoder.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/codec/native/test_encoder.py b/tests/codec/native/test_encoder.py
index 8c35b55..25c9979 100644
--- a/tests/codec/native/test_encoder.py
+++ b/tests/codec/native/test_encoder.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/compat/__main__.py b/tests/compat/__main__.py
index 225ad90..296d70c 100644
--- a/tests/compat/__main__.py
+++ b/tests/compat/__main__.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
try:
diff --git a/tests/compat/test_binary.py b/tests/compat/test_binary.py
index 4fa1d64..3e0949f 100644
--- a/tests/compat/test_binary.py
+++ b/tests/compat/test_binary.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/compat/test_integer.py b/tests/compat/test_integer.py
index 3f16f7a..04fd86a 100644
--- a/tests/compat/test_integer.py
+++ b/tests/compat/test_integer.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/compat/test_octets.py b/tests/compat/test_octets.py
index e552526..5a9bc7c 100644
--- a/tests/compat/test_octets.py
+++ b/tests/compat/test_octets.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/test_debug.py b/tests/test_debug.py
index 94a867e..9e33f93 100644
--- a/tests/test_debug.py
+++ b/tests/test_debug.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/type/__main__.py b/tests/type/__main__.py
index b88bff9..fcc66e7 100644
--- a/tests/type/__main__.py
+++ b/tests/type/__main__.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
try:
diff --git a/tests/type/test_char.py b/tests/type/test_char.py
index abae715..8540a3e 100644
--- a/tests/type/test_char.py
+++ b/tests/type/test_char.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import pickle
diff --git a/tests/type/test_constraint.py b/tests/type/test_constraint.py
index 78d4e31..b5276cd 100644
--- a/tests/type/test_constraint.py
+++ b/tests/type/test_constraint.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/type/test_namedtype.py b/tests/type/test_namedtype.py
index e8fda88..7cff45e 100644
--- a/tests/type/test_namedtype.py
+++ b/tests/type/test_namedtype.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/type/test_namedval.py b/tests/type/test_namedval.py
index 0911d43..4ac08cf 100644
--- a/tests/type/test_namedval.py
+++ b/tests/type/test_namedval.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/type/test_opentype.py b/tests/type/test_opentype.py
index 46b5c10..ff6788f 100644
--- a/tests/type/test_opentype.py
+++ b/tests/type/test_opentype.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/type/test_tag.py b/tests/type/test_tag.py
index 10e76d5..e8dd7a3 100644
--- a/tests/type/test_tag.py
+++ b/tests/type/test_tag.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import sys
diff --git a/tests/type/test_univ.py b/tests/type/test_univ.py
index 357c9e5..a44f82a 100644
--- a/tests/type/test_univ.py
+++ b/tests/type/test_univ.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import math
diff --git a/tests/type/test_useful.py b/tests/type/test_useful.py
index c1d7832..8a5ab30 100644
--- a/tests/type/test_useful.py
+++ b/tests/type/test_useful.py
@@ -1,7 +1,7 @@
#
# This file is part of pyasn1 software.
#
-# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
+# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pyasn1/license.html
#
import datetime