Skip to content

Commit

Permalink
Fix top level tests after including v33
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenCooper committed Dec 11, 2024
1 parent 7d53fa1 commit 12ae31a
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createGrid } from '@ag-grid-community/core';
import { createGrid } from 'ag-grid-community';

(() => {
const gridOptions = { foo: 'bar' };
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createGrid } from '@ag-grid-community/core';
import { createGrid } from 'ag-grid-community';

(() => {
const gridOptions = { foo: 'bar' };
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createGrid } from '@ag-grid-community/core';
import { createGrid } from 'ag-grid-community';

(() => {
const gridOptions = { foo: 'bar' };
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createGrid } from '@ag-grid-community/core';
import { createGrid } from 'ag-grid-community';

(() => {
const gridOptions = { foo: 'bar' };
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createGrid } from '@ag-grid-community/core';
import { createGrid } from 'ag-grid-community';

(() => {
const gridOptions = { foo: 'bar' };
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createGrid } from '@ag-grid-community/core';
import { createGrid } from 'ag-grid-community';

(() => {
const gridOptions = { foo: 'bar' };
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/test/e2e/multi-thread/expected/file1.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createGrid } from '@ag-grid-community/core';
import { createGrid } from 'ag-grid-community';

(() => {
const gridOptions = { foo: 'bar' };
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/test/e2e/multi-thread/expected/file2.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createGrid } from '@ag-grid-community/core';
import { createGrid } from 'ag-grid-community';

(() => {
const gridOptions = { foo: 'bar' };
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/test/e2e/multi-thread/expected/file3.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createGrid } from '@ag-grid-community/core';
import { createGrid } from 'ag-grid-community';

(() => {
const gridOptions = { foo: 'bar' };
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/test/e2e/single-thread/expected/file.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createGrid } from '@ag-grid-community/core';
import { createGrid } from 'ag-grid-community';

(() => {
const gridOptions = { foo: 'bar' };
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { myCreateGrid } from '@hello/world';
import { createGrid } from '@ag-grid-community/core';
import { createGrid } from 'ag-grid-community';

(() => {
const gridOptions = { foo: 'bar' };
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { myCreateGrid } from '@hello/world';
import { createGrid } from '@ag-grid-community/core';
import { createGrid } from 'ag-grid-community';

(() => {
const gridOptions = { foo: 'bar' };
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { myCreateGrid } from '@hello/world';
import { createGrid } from '@ag-grid-community/core';
import { createGrid } from 'ag-grid-community';

(() => {
const gridOptions = { foo: 'bar' };
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { myCreateGrid } from '@hello/world';
import { createGrid } from '@ag-grid-community/core';
import { createGrid } from 'ag-grid-community';

(() => {
const gridOptions = { foo: 'bar' };
Expand Down

0 comments on commit 12ae31a

Please sign in to comment.