Fix version regex to support multi-digit numbers
This commit is contained in:
parent
e4cf14fa59
commit
9e050d4abd
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue