function testShouldNotImportWrongFitmentsWhenServiceCodeDiffers()
 {
     $product = $this->newProduct(1);
     $product = new Elite_Vafdiagram_Model_Catalog_Product($product);
     $product->addServiceCode(123);
     $this->import('sku,make,model,year,service_code' . "\n" . ',Honda,Civic,2000,456');
     $this->assertEquals(0, count($product->getFits()), 'should not import wrong fitments when service code differs');
 }