We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef22265 commit c7b7e62Copy full SHA for c7b7e62
tests/test_daterange.py
@@ -6,10 +6,14 @@
6
except ImportError:
7
import unittest
8
9
+
10
class DateRangeTest(unittest.TestCase):
11
def setUp(self):
- self.openlicensefile = os.path.join(os.path.dirname(__file__), '../LICENSE.txt')
12
- self.pattern = 'Copyright (c) 2012 - %s SendGrid, Inc.' % (time.strftime("%Y"))
+ self.openlicensefile = os.path.join(
13
+ os.path.dirname(__file__),
14
+ '../LICENSE.txt')
15
+ self.pattern = 'Copyright (c) 2012 - %s SendGrid, Inc.' % (
16
+ time.strftime("%Y"))
17
self.licensefile = open(self.openlicensefile).read()
18
19
def test__daterange(self):
0 commit comments