Description: Update text fixture paths
 dh compiles the package in a arch-specific directory which causes
 errors in dh_auto_test.  This patch updates the paths for text fixtures
 to allow the tests to run correctly.
Author: Tim Potter <tpot@hpe.com>
Forwarded: not-needed
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: golang-github-olekukonko-tablewriter/table_test.go
===================================================================
--- golang-github-olekukonko-tablewriter.orig/table_test.go
+++ golang-github-olekukonko-tablewriter/table_test.go
@@ -55,7 +55,7 @@ func ExampleLong() {
 }
 
 func ExampleCSV() {
-	table, _ := NewCSV(os.Stdout, "test.csv", true)
+	table, _ := NewCSV(os.Stdout, "../../../../../test.csv", true)
 	table.SetCenterSeparator("*")
 	table.SetRowSeparator("=")
 
@@ -63,7 +63,7 @@ func ExampleCSV() {
 }
 
 func TestCSVInfo(t *testing.T) {
-	table, err := NewCSV(os.Stdout, "test_info.csv", true)
+	table, err := NewCSV(os.Stdout, "../../../../../test_info.csv", true)
 	if err != nil {
 		t.Error(err)
 		return
@@ -74,7 +74,7 @@ func TestCSVInfo(t *testing.T) {
 }
 
 func TestCSVSeparator(t *testing.T) {
-	table, err := NewCSV(os.Stdout, "test.csv", true)
+	table, err := NewCSV(os.Stdout, "../../../../../test.csv", true)
 	if err != nil {
 		t.Error(err)
 		return
