test(diffview): update golden files to remove final line breaks

Andrey Nering created

Change summary

internal/exp/diffview/testdata/TestDiffView/Split/CustomContextLines/DarkMode.golden    | 2 
internal/exp/diffview/testdata/TestDiffView/Split/CustomContextLines/LightMode.golden   | 2 
internal/exp/diffview/testdata/TestDiffView/Split/Default/DarkMode.golden               | 2 
internal/exp/diffview/testdata/TestDiffView/Split/Default/LightMode.golden              | 2 
internal/exp/diffview/testdata/TestDiffView/Split/LargeWidth/DarkMode.golden            | 2 
internal/exp/diffview/testdata/TestDiffView/Split/LargeWidth/LightMode.golden           | 2 
internal/exp/diffview/testdata/TestDiffView/Split/MultipleHunks/DarkMode.golden         | 2 
internal/exp/diffview/testdata/TestDiffView/Split/MultipleHunks/LightMode.golden        | 2 
internal/exp/diffview/testdata/TestDiffView/Split/Narrow/DarkMode.golden                | 2 
internal/exp/diffview/testdata/TestDiffView/Split/Narrow/LightMode.golden               | 2 
internal/exp/diffview/testdata/TestDiffView/Split/NoLineNumbers/DarkMode.golden         | 2 
internal/exp/diffview/testdata/TestDiffView/Split/NoLineNumbers/LightMode.golden        | 2 
internal/exp/diffview/testdata/TestDiffView/Split/SmallWidth/DarkMode.golden            | 2 
internal/exp/diffview/testdata/TestDiffView/Split/SmallWidth/LightMode.golden           | 2 
internal/exp/diffview/testdata/TestDiffView/Unified/CustomContextLines/DarkMode.golden  | 2 
internal/exp/diffview/testdata/TestDiffView/Unified/CustomContextLines/LightMode.golden | 2 
internal/exp/diffview/testdata/TestDiffView/Unified/Default/DarkMode.golden             | 2 
internal/exp/diffview/testdata/TestDiffView/Unified/Default/LightMode.golden            | 2 
internal/exp/diffview/testdata/TestDiffView/Unified/LargeWidth/DarkMode.golden          | 2 
internal/exp/diffview/testdata/TestDiffView/Unified/LargeWidth/LightMode.golden         | 2 
internal/exp/diffview/testdata/TestDiffView/Unified/MultipleHunks/DarkMode.golden       | 2 
internal/exp/diffview/testdata/TestDiffView/Unified/MultipleHunks/LightMode.golden      | 2 
internal/exp/diffview/testdata/TestDiffView/Unified/Narrow/DarkMode.golden              | 2 
internal/exp/diffview/testdata/TestDiffView/Unified/Narrow/LightMode.golden             | 2 
internal/exp/diffview/testdata/TestDiffView/Unified/NoLineNumbers/DarkMode.golden       | 2 
internal/exp/diffview/testdata/TestDiffView/Unified/NoLineNumbers/LightMode.golden      | 2 
internal/exp/diffview/testdata/TestDiffView/Unified/SmallWidth/DarkMode.golden          | 2 
internal/exp/diffview/testdata/TestDiffView/Unified/SmallWidth/LightMode.golden         | 2 
28 files changed, 28 insertions(+), 28 deletions(-)

Detailed changes

internal/exp/diffview/testdata/TestDiffView/Split/CustomContextLines/DarkMode.golden šŸ”—

@@ -13,4 +13,4 @@
 Ā 11Ā   func getContent() string {                      Ā 12Ā   func getContent() string {                      
 Ā 12Ā -     return "Hello, world!"                      Ā 13Ā +     content := strings.ToUpper("Hello, World!") 
 Ā   Ā                                                   Ā 14Ā +     return content                              
-Ā 13Ā   }                                               Ā 15Ā   }                                               
+Ā 13Ā   }                                               Ā 15Ā   }                                               

internal/exp/diffview/testdata/TestDiffView/Split/CustomContextLines/LightMode.golden šŸ”—

@@ -13,4 +13,4 @@
 Ā 11Ā   func getContent() string {                      Ā 12Ā   func getContent() string {                      
 Ā 12Ā -     return "Hello, world!"                      Ā 13Ā +     content := strings.ToUpper("Hello, World!") 
 Ā   Ā                                                   Ā 14Ā +     return content                              
-Ā 13Ā   }                                               Ā 15Ā   }                                               
+Ā 13Ā   }                                               Ā 15Ā   }                                               

internal/exp/diffview/testdata/TestDiffView/Split/Default/DarkMode.golden šŸ”—

@@ -4,4 +4,4 @@
 Ā  7Ā   func main() {                    Ā  7Ā   func main() {                    
 Ā  8Ā -     fmt.Println("Hello, world!") Ā  8Ā +     content := "Hello, world!"   
 Ā   Ā                                    Ā  9Ā +     fmt.Println(content)         
-Ā  9Ā   }                                Ā 10Ā   }                                
+Ā  9Ā   }                                Ā 10Ā   }                                

internal/exp/diffview/testdata/TestDiffView/Split/Default/LightMode.golden šŸ”—

@@ -4,4 +4,4 @@
 Ā  7Ā   func main() {                    Ā  7Ā   func main() {                    
 Ā  8Ā -     fmt.Println("Hello, world!") Ā  8Ā +     content := "Hello, world!"   
 Ā   Ā                                    Ā  9Ā +     fmt.Println(content)         
-Ā  9Ā   }                                Ā 10Ā   }                                
+Ā  9Ā   }                                Ā 10Ā   }                                

internal/exp/diffview/testdata/TestDiffView/Split/LargeWidth/DarkMode.golden šŸ”—

@@ -12,4 +12,4 @@
 Ā 11Ā   func getContent() string {                            Ā 12Ā   func getContent() string {                            
 Ā 12Ā -     return "Hello, world!"                            Ā 13Ā +     content := strings.ToUpper("Hello, World!")       
 Ā   Ā                                                         Ā 14Ā +     return content                                    
-Ā 13Ā   }                                                     Ā 15Ā   }                                                     
+Ā 13Ā   }                                                     Ā 15Ā   }                                                     

internal/exp/diffview/testdata/TestDiffView/Split/LargeWidth/LightMode.golden šŸ”—

@@ -12,4 +12,4 @@
 Ā 11Ā   func getContent() string {                            Ā 12Ā   func getContent() string {                            
 Ā 12Ā -     return "Hello, world!"                            Ā 13Ā +     content := strings.ToUpper("Hello, World!")       
 Ā   Ā                                                         Ā 14Ā +     return content                                    
-Ā 13Ā   }                                                     Ā 15Ā   }                                                     
+Ā 13Ā   }                                                     Ā 15Ā   }                                                     

internal/exp/diffview/testdata/TestDiffView/Split/MultipleHunks/DarkMode.golden šŸ”—

@@ -12,4 +12,4 @@
 Ā 11Ā   func getContent() string {                      Ā 12Ā   func getContent() string {                      
 Ā 12Ā -     return "Hello, world!"                      Ā 13Ā +     content := strings.ToUpper("Hello, World!") 
 Ā   Ā                                                   Ā 14Ā +     return content                              
-Ā 13Ā   }                                               Ā 15Ā   }                                               
+Ā 13Ā   }                                               Ā 15Ā   }                                               

internal/exp/diffview/testdata/TestDiffView/Split/MultipleHunks/LightMode.golden šŸ”—

@@ -12,4 +12,4 @@
 Ā 11Ā   func getContent() string {                      Ā 12Ā   func getContent() string {                      
 Ā 12Ā -     return "Hello, world!"                      Ā 13Ā +     content := strings.ToUpper("Hello, World!") 
 Ā   Ā                                                   Ā 14Ā +     return content                              
-Ā 13Ā   }                                               Ā 15Ā   }                                               
+Ā 13Ā   }                                               Ā 15Ā   }                                               

internal/exp/diffview/testdata/TestDiffView/Split/Narrow/DarkMode.golden šŸ”—

@@ -1,4 +1,4 @@
 Ā …Ā   @@ -1,3 +1,3 @@   Ā …Ā                     
 Ā 1Ā - a                 Ā 1Ā + d                 
 Ā 2Ā - b                 Ā 2Ā + e                 
-Ā 3Ā - c                 Ā 3Ā + f                 
+Ā 3Ā - c                 Ā 3Ā + f                 

internal/exp/diffview/testdata/TestDiffView/Split/Narrow/LightMode.golden šŸ”—

@@ -1,4 +1,4 @@
 Ā …Ā   @@ -1,3 +1,3 @@   Ā …Ā                     
 Ā 1Ā - a                 Ā 1Ā + d                 
 Ā 2Ā - b                 Ā 2Ā + e                 
-Ā 3Ā - c                 Ā 3Ā + f                 
+Ā 3Ā - c                 Ā 3Ā + f                 

internal/exp/diffview/testdata/TestDiffView/Split/NoLineNumbers/DarkMode.golden šŸ”—

@@ -4,4 +4,4 @@
   func main() {                      func main() {                    
 -     fmt.Println("Hello, world!") +     content := "Hello, world!"   
                                    +     fmt.Println(content)         
-  }                                  }                                
+  }                                  }                                

internal/exp/diffview/testdata/TestDiffView/Split/NoLineNumbers/LightMode.golden šŸ”—

@@ -4,4 +4,4 @@
   func main() {                      func main() {                    
 -     fmt.Println("Hello, world!") +     content := "Hello, world!"   
                                    +     fmt.Println(content)         
-  }                                  }                                
+  }                                  }                                

internal/exp/diffview/testdata/TestDiffView/Split/SmallWidth/DarkMode.golden šŸ”—

@@ -12,4 +12,4 @@
 Ā 11Ā   func getConte…Ā 12Ā   func getConte…
 Ā 12Ā -     return "H…Ā 13Ā +     content :…
 Ā   Ā                 Ā 14Ā +     return co…
-Ā 13Ā   }             Ā 15Ā   }             
+Ā 13Ā   }             Ā 15Ā   }             

internal/exp/diffview/testdata/TestDiffView/Split/SmallWidth/LightMode.golden šŸ”—

@@ -12,4 +12,4 @@
 Ā 11Ā   func getConte…Ā 12Ā   func getConte…
 Ā 12Ā -     return "H…Ā 13Ā +     content :…
 Ā   Ā                 Ā 14Ā +     return co…
-Ā 13Ā   }             Ā 15Ā   }             
+Ā 13Ā   }             Ā 15Ā   }             

internal/exp/diffview/testdata/TestDiffView/Unified/CustomContextLines/DarkMode.golden šŸ”—

@@ -14,4 +14,4 @@
 Ā 12Ā Ā   Ā -     return "Hello, world!"                      
 Ā   Ā Ā 13Ā +     content := strings.ToUpper("Hello, World!") 
 Ā   Ā Ā 14Ā +     return content                              
-Ā 13Ā Ā 15Ā   }                                               
+Ā 13Ā Ā 15Ā   }                                               

internal/exp/diffview/testdata/TestDiffView/Unified/CustomContextLines/LightMode.golden šŸ”—

@@ -14,4 +14,4 @@
 Ā 12Ā Ā   Ā -     return "Hello, world!"                      
 Ā   Ā Ā 13Ā +     content := strings.ToUpper("Hello, World!") 
 Ā   Ā Ā 14Ā +     return content                              
-Ā 13Ā Ā 15Ā   }                                               
+Ā 13Ā Ā 15Ā   }                                               

internal/exp/diffview/testdata/TestDiffView/Unified/Default/DarkMode.golden šŸ”—

@@ -5,4 +5,4 @@
 Ā  8Ā Ā   Ā -     fmt.Println("Hello, world!") 
 Ā   Ā Ā  8Ā +     content := "Hello, world!"   
 Ā   Ā Ā  9Ā +     fmt.Println(content)         
-Ā  9Ā Ā 10Ā   }                                
+Ā  9Ā Ā 10Ā   }                                

internal/exp/diffview/testdata/TestDiffView/Unified/Default/LightMode.golden šŸ”—

@@ -5,4 +5,4 @@
 Ā  8Ā Ā   Ā -     fmt.Println("Hello, world!") 
 Ā   Ā Ā  8Ā +     content := "Hello, world!"   
 Ā   Ā Ā  9Ā +     fmt.Println(content)         
-Ā  9Ā Ā 10Ā   }                                
+Ā  9Ā Ā 10Ā   }                                

internal/exp/diffview/testdata/TestDiffView/Unified/LargeWidth/DarkMode.golden šŸ”—

@@ -13,4 +13,4 @@
 Ā 12Ā Ā   Ā -     return "Hello, world!"                                                                                    
 Ā   Ā Ā 13Ā +     content := strings.ToUpper("Hello, World!")                                                               
 Ā   Ā Ā 14Ā +     return content                                                                                            
-Ā 13Ā Ā 15Ā   }                                                                                                             
+Ā 13Ā Ā 15Ā   }                                                                                                             

internal/exp/diffview/testdata/TestDiffView/Unified/LargeWidth/LightMode.golden šŸ”—

@@ -13,4 +13,4 @@
 Ā 12Ā Ā   Ā -     return "Hello, world!"                                                                                    
 Ā   Ā Ā 13Ā +     content := strings.ToUpper("Hello, World!")                                                               
 Ā   Ā Ā 14Ā +     return content                                                                                            
-Ā 13Ā Ā 15Ā   }                                                                                                             
+Ā 13Ā Ā 15Ā   }                                                                                                             

internal/exp/diffview/testdata/TestDiffView/Unified/MultipleHunks/DarkMode.golden šŸ”—

@@ -13,4 +13,4 @@
 Ā 12Ā Ā   Ā -     return "Hello, world!"                      
 Ā   Ā Ā 13Ā +     content := strings.ToUpper("Hello, World!") 
 Ā   Ā Ā 14Ā +     return content                              
-Ā 13Ā Ā 15Ā   }                                               
+Ā 13Ā Ā 15Ā   }                                               

internal/exp/diffview/testdata/TestDiffView/Unified/MultipleHunks/LightMode.golden šŸ”—

@@ -13,4 +13,4 @@
 Ā 12Ā Ā   Ā -     return "Hello, world!"                      
 Ā   Ā Ā 13Ā +     content := strings.ToUpper("Hello, World!") 
 Ā   Ā Ā 14Ā +     return content                              
-Ā 13Ā Ā 15Ā   }                                               
+Ā 13Ā Ā 15Ā   }                                               

internal/exp/diffview/testdata/TestDiffView/Unified/Narrow/DarkMode.golden šŸ”—

@@ -4,4 +4,4 @@
 Ā 3Ā Ā  Ā - c                 
 Ā  Ā Ā 1Ā + d                 
 Ā  Ā Ā 2Ā + e                 
-Ā  Ā Ā 3Ā + f                 
+Ā  Ā Ā 3Ā + f                 

internal/exp/diffview/testdata/TestDiffView/Unified/Narrow/LightMode.golden šŸ”—

@@ -4,4 +4,4 @@
 Ā 3Ā Ā  Ā - c                 
 Ā  Ā Ā 1Ā + d                 
 Ā  Ā Ā 2Ā + e                 
-Ā  Ā Ā 3Ā + f                 
+Ā  Ā Ā 3Ā + f                 

internal/exp/diffview/testdata/TestDiffView/Unified/NoLineNumbers/DarkMode.golden šŸ”—

@@ -5,4 +5,4 @@
 -     fmt.Println("Hello, world!") 
 +     content := "Hello, world!"   
 +     fmt.Println(content)         
-  }                                
+  }                                

internal/exp/diffview/testdata/TestDiffView/Unified/NoLineNumbers/LightMode.golden šŸ”—

@@ -5,4 +5,4 @@
 -     fmt.Println("Hello, world!") 
 +     content := "Hello, world!"   
 +     fmt.Println(content)         
-  }                                
+  }                                

internal/exp/diffview/testdata/TestDiffView/Unified/SmallWidth/DarkMode.golden šŸ”—

@@ -13,4 +13,4 @@
 Ā 12Ā Ā   Ā -     return "Hello, world!"    
 Ā   Ā Ā 13Ā +     content := strings.ToUppe…
 Ā   Ā Ā 14Ā +     return content            
-Ā 13Ā Ā 15Ā   }                             
+Ā 13Ā Ā 15Ā   }                             

internal/exp/diffview/testdata/TestDiffView/Unified/SmallWidth/LightMode.golden šŸ”—

@@ -13,4 +13,4 @@
 Ā 12Ā Ā   Ā -     return "Hello, world!"    
 Ā   Ā Ā 13Ā +     content := strings.ToUppe…
 Ā   Ā Ā 14Ā +     return content            
-Ā 13Ā Ā 15Ā   }                             
+Ā 13Ā Ā 15Ā   }