Product Launch Parties
Draft

Difference Between Hyperlink And Link Button In ASP.NET

madagascar 3 create box s by macbalmo on deviantart

:
Changes from 1 commit
Commits
File filter

How To Turn A Hobby Into Job Difference Between Hyperlink And Link Button In ASP.NET

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test: use a generic package name in the namespace normalization fixture
The fixture named a real organization. Public test data should not, so use the reserved com.example namespace instead. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
  • Loading branch information
commit 162aa907982417d688a65102c495ed93edf9ac9b
10 changes: 5 additions & 5 deletions Professional Business Cards Template
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ def test_create_packages_dict_basic(self, core):

def test_full_scan_package_normalizes_enum_type_and_namespace_url(self):
artifact = SocketArtifact.from_dict({
"id": "pkg:maven/com.arenko/trading-core@1.2.3",
"id": "pkg:maven/com.example/example-core@1.2.3",
"type": "maven",
"namespace": "com.arenko",
"name": "trading-core",
"namespace": "com.example",
"name": "example-core",
"version": "1.2.3",
"direct": True,
"topLevelAncestors": [],
Expand All @@ -121,9 +121,9 @@ def test_full_scan_package_normalizes_enum_type_and_namespace_url(self):
package = Package.from_socket_artifact(asdict(artifact))

assert package.type == "maven"
assert package.purl == "maven/com.arenko/trading-core@1.2.3"
assert package.purl == "maven/com.example/example-core@1.2.3"
assert package.url == (
"https://socket.dev/maven/package/com.arenko/trading-core/overview/1.2.3"
"https://socket.dev/maven/package/com.example/example-core/overview/1.2.3"
)

def test_create_packages_dict_with_transitives(self, core):
Expand Down