diff -Nuar a/vendor/magento/module-paypal/Model/AbstractConfig.php b/vendor/magento/module-paypal/Model/AbstractConfig.php
--- a/vendor/magento/module-paypal/Model/AbstractConfig.php
+++ b/vendor/magento/module-paypal/Model/AbstractConfig.php
@@ -59,7 +59,7 @@
     /**
      * @var string
      */
-    private static $bnCode = 'Magento_Cart_%s';
+    private static $bnCode = 'Magento_Enterprise_Cloud';
 
     /**
      * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
@@ -335,7 +335,7 @@
      */
     public function getBuildNotationCode()
     {
-        return sprintf(self::$bnCode, $this->getProductMetadata()->getEdition());
+        return self::$bnCode;
     }
 
     /**
diff -Nuar a/vendor/magento/module-paypal/Test/Unit/Model/AbstractConfigTest.php b/vendor/magento/module-paypal/Test/Unit/Model/AbstractConfigTest.php
--- a/vendor/magento/module-paypal/Test/Unit/Model/AbstractConfigTest.php
+++ b/vendor/magento/module-paypal/Test/Unit/Model/AbstractConfigTest.php
@@ -293,7 +293,7 @@
     public function testGetBuildNotationCode()
     {
         $productMetadata = $this->getMock(ProductMetadataInterface::class, [], [], '', false);
-        $productMetadata->expects($this->once())
+        $productMetadata->expects($this->never())
             ->method('getEdition')
             ->will($this->returnValue('SomeEdition'));
 
@@ -304,6 +304,6 @@
             $productMetadata
         );
 
-        $this->assertEquals('Magento_Cart_SomeEdition', $this->config->getBuildNotationCode());
+        $this->assertEquals('Magento_Enterprise_Cloud', $this->config->getBuildNotationCode());
     }
 }
