Update diag.t to correct C++ version

The default C++ version was updated in 4729876 and this commit reflects
this change in the test.
This commit is contained in:
Max Rossmannek 2020-11-22 13:04:39 +01:00 committed by Paul Beckingham
parent ca1e2a5a6b
commit cad9a4f834

View file

@ -48,7 +48,7 @@ class TestDiagnostics(TestCase):
self.t.activate_hooks()
code, out, err = self.t.diag()
self.tap(out)
self.assertRegex(out, "Compliance:\s+C\+\+14")
self.assertRegex(out, "Compliance:\s+C\+\+17")
self.assertRegex(out, "libgnutls:\s+\d+\.\d+\.\d+")
self.assertIn("edlin", out)
self.assertIn("strict", out)