Skip to content

Commit 757f095

Browse files
Rik Huijzerfredrikekre
authored andcommitted
Fix typo in PackageInfo struct comparison (#2297)
(cherry picked from commit b2bc862, PR #2297)
1 parent df09a61 commit 757f095

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Types.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1382,7 +1382,7 @@ function Base.:(==)(a::PackageInfo, b::PackageInfo)
13821382
return a.name == b.name && a.version == b.version && a.tree_hash == b.tree_hash &&
13831383
a.is_direct_dep == b.is_direct_dep &&
13841384
a.is_pinned == b.is_pinned && a.is_tracking_path == b.is_tracking_path &&
1385-
a.is_tracking_repo == a.is_tracking_repo &&
1385+
a.is_tracking_repo == b.is_tracking_repo &&
13861386
a.is_tracking_registry == b.is_tracking_registry &&
13871387
a.git_revision == b.git_revision && a.git_source == b.git_source &&
13881388
a.source == b.source && a.dependencies == b.dependencies

0 commit comments

Comments
 (0)