From: Chris K <c@chrisko.ch>
Date: Sun, 11 Nov 2018 11:45:02 -0800
Subject: Fix TSX test information. (#22)

(cherry picked from commit c640019ed4bda023bac884990967336803e39e3a)
---
 cpuid_test.go | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/cpuid_test.go b/cpuid_test.go
index 45401d9..96d5054 100644
--- a/cpuid_test.go
+++ b/cpuid_test.go
@@ -634,14 +634,14 @@ func TestVM(t *testing.T) {
 	t.Log("Vendor ID:", CPU.VM())
 }
 
-// NSC returns true if vendor is recognized as National Semiconductor
+// TSX returns true if cpu supports transactional sync extensions.
 func TestCPUInfo_TSX(t *testing.T) {
 	got := CPU.TSX()
 	expected := CPU.HLE() && CPU.RTM()
 	if got != expected {
-		t.Fatalf("TestNSC: expected %v, got %v", expected, got)
+		t.Fatalf("TestCPUInfo_TSX: expected %v, got %v", expected, got)
 	}
-	t.Log("TestNSC:", got)
+	t.Log("TestCPUInfo_TSX:", got)
 }
 
 // Test RTCounter function
