Skip to content

Commit 9361c5f

Browse files
authored
Merge pull request #140 from rust-embedded/rust-embedded
Repo transfer: dbrgn → rust-embedded
2 parents 58fd2c9 + 754c543 commit 9361c5f

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation = "https://docs.rs/embedded-hal-mock"
88
keywords = ["hal", "io", "spi", "i2c", "delay"]
99
license = "MIT OR Apache-2.0"
1010
readme = "README.md"
11-
repository = "https://github.com/dbrgn/embedded-hal-mock"
11+
repository = "https://github.com/rust-embedded/embedded-hal-mock"
1212
include = [
1313
"**/*.rs",
1414
"Cargo.toml",

LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2018-2024 Danilo Bargen and contributors
1+
Copyright (C) Danilo Bargen and contributors
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of
44
this software and associated documentation files (the "Software"), to deal in

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ for inclusion in the work by you, as defined in the Apache-2.0 license, shall
8585
be dual licensed as above, without any additional terms or conditions.
8686

8787
<!-- Badges -->
88-
[github-actions]: https://github.com/dbrgn/embedded-hal-mock/actions/workflows/ci.yml
89-
[github-actions-badge]: https://github.com/dbrgn/embedded-hal-mock/actions/workflows/ci.yml/badge.svg
88+
[github-actions]: https://github.com/rust-embedded/embedded-hal-mock/actions/workflows/ci.yml
89+
[github-actions-badge]: https://github.com/rust-embedded/embedded-hal-mock/actions/workflows/ci.yml/badge.svg
9090
[crates-io]: https://crates.io/crates/embedded-hal-mock
9191
[version-badge]: https://img.shields.io/crates/v/embedded-hal-mock.svg

src/common.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ impl Drop for DoneCallDetector {
147147
if !self.called && !thread::panicking() {
148148
let msg = "WARNING: A mock (from embedded-hal-mock) was dropped \
149149
without calling the `.done()` method. \
150-
See https://github.com/dbrgn/embedded-hal-mock/issues/34 \
150+
See https://github.com/rust-embedded/embedded-hal-mock/issues/34 \
151151
for more details.";
152152

153153
// Note: We cannot use the print macros here, since they get
@@ -193,7 +193,7 @@ mod tests {
193193

194194
#[test]
195195
#[should_panic(
196-
expected = "WARNING: A mock (from embedded-hal-mock) was dropped without calling the `.done()` method. See https://github.com/dbrgn/embedded-hal-mock/issues/34 for more details."
196+
expected = "WARNING: A mock (from embedded-hal-mock) was dropped without calling the `.done()` method. See https://github.com/rust-embedded/embedded-hal-mock/issues/34 for more details."
197197
)]
198198
fn panic_if_drop_not_called() {
199199
let expectations = [0u8, 1u8];

0 commit comments

Comments
 (0)