From 0798c924dfcdfcf0c02ae74136013daa5d7d16f4 Mon Sep 17 00:00:00 2001 From: Yaroslav Brustinov Date: Wed, 20 Jan 2016 08:40:24 +0200 Subject: regression: fix case typo in functional test --- .../regression/unit_tests/functional_tests/pkt_builder_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/automation/regression/unit_tests/functional_tests') diff --git a/scripts/automation/regression/unit_tests/functional_tests/pkt_builder_test.py b/scripts/automation/regression/unit_tests/functional_tests/pkt_builder_test.py index 6d18b7ef..96393d1e 100755 --- a/scripts/automation/regression/unit_tests/functional_tests/pkt_builder_test.py +++ b/scripts/automation/regression/unit_tests/functional_tests/pkt_builder_test.py @@ -188,7 +188,7 @@ class CTRexPktBuilder_Test(pkt_bld_general_test.CGeneralPktBld_Test): def test_get_layer(self): assert_equal(self.pkt_bld.get_layer('no_such_layer'), None) assert(not(self.pkt_bld.get_layer('l2') is self.pkt_bld._packet)) - assert_equal(type(self.pkt_bld.get_layer('l2')).__name__, "ethernet") + assert_equal(type(self.pkt_bld.get_layer('l2')).__name__, "Ethernet") def test_dump_to_pcap(self): # set Ethernet layer attributes -- cgit