~qaul/community

alexandria-tags: fix accidentally disabled test v1 PROPOSED

Alyssa Ross: 1
 alexandria-tags: fix accidentally disabled test

 1 files changed, 3 insertions(+), 3 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~qaul/community/patches/20728/mbox | git am -3
Learn more about email & git

[PATCH] alexandria-tags: fix accidentally disabled test Export this patch

---
 utils/alexandria-tags/src/lib.rs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/utils/alexandria-tags/src/lib.rs b/utils/alexandria-tags/src/lib.rs
index 09cfd54b..c34cfbe8 100644
--- a/utils/alexandria-tags/src/lib.rs
+++ b/utils/alexandria-tags/src/lib.rs
@@ -19,10 +19,10 @@ use std::{collections::BTreeSet, fmt};
/// Simply construct a set via one of the `From` implementations of a
/// containing type.
///
/// ```norun
/// # use alexandria::data::TagSet;
/// ```no_run
/// # use alexandria_tags::{Tag, TagSet};
/// # use std::collections::BTreeSet;
/// let _: TagSet = vec![].into();
/// let _: TagSet = Vec::<Tag>::new().into();
/// let _: TagSet = BTreeSet::default().into();
/// ```
#[derive(Clone, Debug, Default, Eq, PartialEq, Hash, Serialize, Deserialize)]
-- 
2.30.0