Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sezna committed Dec 16, 2024
1 parent 214097c commit adbc4b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion compiler/qsc_passes/src/test_attribute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ impl<'a> Visitor<'a> for TestAttributeValidator {
if decl.attrs.iter().any(|attr| matches!(attr, Attr::Test)) {
if !decl.generics.is_empty() {
self.errors
.push(TestAttributeError::CallableHasTypeParameters(decl.name.span));
.push(TestAttributeError::CallableHasTypeParameters(
decl.name.span,
));
}
if decl.input.ty != qsc_hir::ty::Ty::UNIT {
self.errors
Expand Down
2 changes: 1 addition & 1 deletion vscode/src/testExplorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ function startWatchingWorkspace(
watcher.onDidCreate(async () => {
await refresher();
});

watcher.onDidChange(async () => {
await refresher();
});
Expand Down

0 comments on commit adbc4b2

Please sign in to comment.