1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: =?utf-8?b?SsOpcsO0bWUgQ2hhcmFvdWk=?= <jerome@riseup.net>
Date: Mon, 4 Jul 2022 18:48:33 -0400
Subject: Swap yaml.core for clj-yaml.core
The former is not packaged in Debian and the latter seems like
an adequate replacement for the purpose of running the testsuite.
Forwarded: not-needed
---
test/puppetlabs/puppetdb/integration/fixtures.clj | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: puppetdb/test/puppetlabs/puppetdb/integration/fixtures.clj
===================================================================
--- puppetdb.orig/test/puppetlabs/puppetdb/integration/fixtures.clj
+++ puppetdb/test/puppetlabs/puppetdb/integration/fixtures.clj
@@ -15,7 +15,7 @@
[puppetlabs.trapperkeeper.app :as tk-app]
[puppetlabs.trapperkeeper.config :as tk-config]
[puppetlabs.trapperkeeper.testutils.bootstrap :as tkbs]
- [yaml.core :as yaml]
+ [clj-yaml.core :as yaml]
[puppetlabs.puppetdb.time :as time]
[puppetlabs.puppetdb.utils :as utils])
(:import
|