File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/plugin-kit/tests Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1752,7 +1752,7 @@ describe("source-code", () => {
17521752 } ) ;
17531753
17541754 it ( "should handle empty text" , ( ) => {
1755- assert . deepStrictEqual (
1755+ assert . strictEqual (
17561756 new TextSourceCodeBase ( {
17571757 ast : {
17581758 loc : {
@@ -1770,7 +1770,7 @@ describe("source-code", () => {
17701770 } ) . getIndexFromLoc ( { line : 1 , column : 0 } ) ,
17711771 0 ,
17721772 ) ;
1773- assert . deepStrictEqual (
1773+ assert . strictEqual (
17741774 new TextSourceCodeBase ( {
17751775 ast : {
17761776 loc : {
@@ -1788,7 +1788,7 @@ describe("source-code", () => {
17881788 } ) . getIndexFromLoc ( { line : 0 , column : 1 } ) ,
17891789 0 ,
17901790 ) ;
1791- assert . deepStrictEqual (
1791+ assert . strictEqual (
17921792 new TextSourceCodeBase ( {
17931793 ast : {
17941794 loc : {
@@ -1806,7 +1806,7 @@ describe("source-code", () => {
18061806 } ) . getIndexFromLoc ( { line : 0 , column : 0 } ) ,
18071807 0 ,
18081808 ) ;
1809- assert . deepStrictEqual (
1809+ assert . strictEqual (
18101810 new TextSourceCodeBase ( {
18111811 ast : {
18121812 loc : {
You can’t perform that action at this time.
0 commit comments