Fix version regex to support multi-digit numbers

This commit is contained in:
Christophe Bedard 2019-11-19 10:21:33 -08:00
parent e4cf14fa59
commit 9e050d4abd

View file

@ -17,7 +17,7 @@ import unittest
from tracetools_test.case import TraceTestCase
VERSION_REGEX = r'^[0-9]\.[0-9]\.[0-9]$'
VERSION_REGEX = r'^[0-9]+\.[0-9]+\.[0-9]+$'
class TestNode(TraceTestCase):